X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcdbi%2F02-Film.t;h=5d0f8607e4d859581db0103239486b6531cac357;hb=refs%2Fheads%2Fpeople%2Filmari%2Fset-constraints-deffered-component;hp=5ef43bb7633c87cc884438c0fb6a42e639bd2f7c;hpb=8273e845426f0187b4ad6c4a1b42286fa09a648f;p=dbsrgits%2FDBIx-Class.git diff --git a/t/cdbi/02-Film.t b/t/cdbi/02-Film.t index 5ef43bb..5d0f860 100644 --- a/t/cdbi/02-Film.t +++ b/t/cdbi/02-Film.t @@ -1,17 +1,11 @@ use strict; +use warnings; + use Test::More; use Scalar::Util 'refaddr'; use namespace::clean; $| = 1; -BEGIN { - eval "use DBIx::Class::CDBICompat;"; - if ($@) { - plan (skip_all => 'Class::Trigger and DBIx::ContextualFetch required'); - } - plan tests => 98; -} - INIT { use lib 't/cdbi/testlib'; use Film; @@ -38,7 +32,7 @@ is(Film->__driver, "SQLite", "Driver set correctly"); } eval { my $duh = Film->insert; }; -like $@, qr/create needs a hashref/, "needs a hashref"; +like $@, qr/Result object instantiation requires a hashref as argument/, "needs a hashref"; ok +Film->create_test_film; @@ -412,3 +406,5 @@ SKIP: { "Creating and retrieving gives ref to same object"; } + +done_testing;