App-DoubleUp

 view release on metacpan or  search on metacpan

t/02_split.t  view on Meta::CPAN

use Test::More tests => 4;
use App::DoubleUp;
use Data::Dumper;

my $app = App::DoubleUp->new();
my @stmts = $app->split_sql_file('test.sql');
is(@stmts, 3);

is($stmts[0], "CREATE TABLE IF NOT EXISTS `test` (\n   `test` INT\n)");
is($stmts[1], "SELECT 1 FROM `test`");
is($stmts[2], "SELECT 2 FROM `test`");



( run in 0.565 second using v1.01-cache-2.11-cpan-4d50c553e7e )