flying pigs. almost as likely as win32 doing what you wanted it to.
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 30_01comments.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_comments;
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,
18 );
19}
20
21DBICTest::Schema::1->connect($make_dbictest_db_comments::dsn);
22
23plan tests => 4;
24
25my $foo = slurp("$dump_path/DBICTest/Schema/1/Result/Foo.pm");
26my $bar = slurp("$dump_path/DBICTest/Schema/1/Result/Bar.pm");
27
28like($foo, qr/Result::Foo - a short comment/, 'Short table comment inline');
29like($bar, qr/Result::Bar\n\n=head1 DESCRIPTION\n\na (very ){80}long comment/,
30 'Long table comment in DESCRIPTION');
31
32like($foo, qr/=head2 fooid\n\n( .*\n)+\na short comment/,
33 'Short column comment recorded');
34like($foo, qr/=head2 footext\n\n( .*\n)+\na (very ){80}long comment/,
35 'Long column comment recorded');
36
37END { rmtree($dump_path, 1, 1); }