silence comment tests
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 30_03no_comment_table.t
CommitLineData
5c06aa08 1use strict;
2use Test::More;
3use Test::Exception;
4use Test::Warn;
5use lib qw(t/lib);
6use File::Slurp qw(slurp);
7use File::Path;
8use make_dbictest_db;
9use dbixcsl_test_dir qw/$tdir/;
10
11my $dump_path = "$tdir/dump";
12
13{
14 package DBICTest::Schema::1;
15 use base qw/ DBIx::Class::Schema::Loader /;
16 __PACKAGE__->loader_options(
17 dump_directory => $dump_path,
a47e6e74 18 quiet => 1,
5c06aa08 19 );
20}
21
22DBICTest::Schema::1->connect($make_dbictest_db::dsn);
23
24plan tests => 1;
25
26my $foo = slurp("$dump_path/DBICTest/Schema/1/Result/Foo.pm");
27my $bar = slurp("$dump_path/DBICTest/Schema/1/Result/Bar.pm");
28
ea998e8e 29like($foo, qr/Result::Foo\n/, 'No error from lack of comment tables');
5c06aa08 30
31END { rmtree($dump_path, 1, 1); }