Some cosmetic fixes in ANFANG
[dbsrgits/DBIx-Class.git] / t / zzzzzzz_authors.t
CommitLineData
c0329273 1BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2
245e3f5d 3use warnings;
4use strict;
5
6use Test::More 'no_plan';
c0329273 7
81b29c8d 8use DBICTest::RunMode;
245e3f5d 9
10my $authorcount = scalar do {
11 open (my $fh, '<', 'AUTHORS') or die "Unable to open AUTHORS - can't happen: $!\n";
12 map { chomp; ( ( ! $_ or $_ =~ /^\s*\#/ ) ? () : $_ ) } <$fh>;
13} or die "Known AUTHORS file seems empty... can't happen...";
14
81b29c8d 15# do not announce anything under ci - we are watching for STDERR silence
3884539f 16diag <<EOD unless DBICTest::RunMode->is_ci;
245e3f5d 17
3884539f 18
19
20$authorcount contributors made this library what it is today
21
22
23Distinguished patrons:
24 * ( 2014 ~ 2015 ) Henry Van Styn, creator of http://p3rl.org/RapidApp
25
26
27EOD
28
29# looks funny if we do it before stuff
245e3f5d 30ok 1;