The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl

# "Insecure $ENV{PATH} while running with -T switch"
#!perl -T

use lib 'examples/lib';
use lib 't/lib';

use Test::DBICx::Modeler::Generator::CLI::SQLite;

Test::DBICx::Modeler::Generator::CLI::SQLite->interface('configfile');
Test::DBICx::Modeler::Generator::SQLite->with_foreign_key(0);
Test::DBICx::Modeler::Generator::CLI::SQLite->runtests;

1;