use Data::Dumper;
BEGIN {
- eval "use DBD::SQLite";
+ eval "use DBD::SQLite; use SQL::Translator";
plan $@
- ? ( skip_all => 'needs DBD::SQLite for testing' )
+ ? ( skip_all => 'needs DBD::SQLite and SQL::Translator for testing' )
: ( tests => 21 );
}
use Data::Dumper;
BEGIN {
- eval "use DBD::SQLite";
+ eval "use DBD::SQLite; use SQL::Translator";
plan $@
- ? ( skip_all => 'needs DBD::SQLite for testing' )
- : ( 'no_plan' );
+ ? ( skip_all => 'needs DBD::SQLite and SQL::Translator for testing' )
+ : ( tests => 21 );
}
my $schema = DBICTest->init_schema(no_populate => 1, no_deploy => 1);