X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F01test.t;fp=t%2F01test.t;h=c5cf4e3e081c029ea26da1547cda43e5a4185d00;hb=b5851590a772b6e3c8a861007bd6b6c52353a776;hp=0000000000000000000000000000000000000000;hpb=74f04cccc5938f53346a3580151080330d1573ea;p=dbsrgits%2FDBIx-Class-Journal.git diff --git a/t/01test.t b/t/01test.t new file mode 100644 index 0000000..c5cf4e3 --- /dev/null +++ b/t/01test.t @@ -0,0 +1,20 @@ +use strict; +use warnings; + +use Test::More; +use lib qw(t/lib); +use DBICTest; +use Data::Dumper; + +BEGIN { + eval "use DBD::SQLite"; + plan $@ + ? ( skip_all => 'needs DBD::SQLite for testing' ) + : ( tests => 2 ); +} + +my $schema = DBICTest->init_schema(no_populate => 1); + +ok($schema, 'Created a Schema'); +isa_ok($schema->_journal_schema, 'DBIx::Class::Schema::Journal::DB'); +