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