Revision history for {{$dist->name}}
{{$NEXT}}
+ - Correctly strip lines that are all whitespace (fixes RT#92582)
- Ditch RT
0.002209 2013-12-27 18:08:31 America/Chicago
use strict;
use warnings;
-use Test::More tests => 1;
+use Test::More;
use DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator;
END;
END
+is_deeply [ split_sql_chunk( 'foo', ' ', 'bar' ) ], [qw( foo bar)];
+
+done_testing;