e7edc251f6b9ad6d05f44b86ac375e0418bd5153
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 30_01comments.t
1 use strict;
2 use Test::More;
3 use Test::Exception;
4 use Test::Warn;
5 use lib qw(t/lib);
6 use File::Slurp qw(slurp);
7 use File::Path;
8 use make_dbictest_db_comments;
9 use dbixcsl_test_dir qw/$tdir/;
10
11 my $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,
18         quiet => 1,
19     );
20 }
21
22 DBICTest::Schema::1->connect($make_dbictest_db_comments::dsn);
23
24 plan tests => 4;
25
26 my $foo = slurp("$dump_path/DBICTest/Schema/1/Result/Foo.pm");
27 my $bar = slurp("$dump_path/DBICTest/Schema/1/Result/Bar.pm");
28
29 like($foo, qr/Result::Foo - a short comment/, 'Short table comment inline');
30 like($bar, qr/Result::Bar\n\n=head1 DESCRIPTION\n\na (very ){80}long comment/,
31     'Long table comment in DESCRIPTION');
32
33 like($foo, qr/=head2 fooid\n\n( .*\n)+\na short comment/,
34     'Short column comment recorded');
35 like($foo, qr/=head2 footext\n\n( .*\n)+\na (very ){80}long comment/,
36     'Long column comment recorded');
37
38 END { rmtree($dump_path, 1, 1); }