X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F30_03no_comment_table.t;h=6ce45ffd8231b01de800f8ee019b88d2e838763d;hb=a79e11896d6d1d70842c432cde8830ded06568ce;hp=6652bdfe8311e2150484a99d19ecd9d64afdff41;hpb=2db2c8982208e6d6e74bd673158277cdabd5c2a1;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/t/30_03no_comment_table.t b/t/30_03no_comment_table.t index 6652bdf..6ce45ff 100644 --- a/t/30_03no_comment_table.t +++ b/t/30_03no_comment_table.t @@ -1,10 +1,11 @@ use strict; +use warnings; use Test::More; use Test::Exception; use Test::Warn; -use lib qw(t/lib); -use File::Slurp qw(slurp); +use DBIx::Class::Schema::Loader::Utils 'slurp_file'; use File::Path; +use lib qw(t/lib); use make_dbictest_db; use dbixcsl_test_dir qw/$tdir/; @@ -23,8 +24,8 @@ DBICTest::Schema::1->connect($make_dbictest_db::dsn); plan tests => 1; -my $foo = slurp("$dump_path/DBICTest/Schema/1/Result/Foo.pm"); -my $bar = slurp("$dump_path/DBICTest/Schema/1/Result/Bar.pm"); +my $foo = slurp_file("$dump_path/DBICTest/Schema/1/Result/Foo.pm"); +my $bar = slurp_file("$dump_path/DBICTest/Schema/1/Result/Bar.pm"); like($foo, qr/Result::Foo\n/, 'No error from lack of comment tables');