Stop requiring explicit bindtype specification for non-scalar references
[dbsrgits/DBIx-Class.git] / t / zzzzzzz_authors.t
CommitLineData
2bc8e981 1use warnings;
2use strict;
3
4use Test::More 'no_plan';
fb938cc9 5use lib 't/lib';
6use DBICTest::RunMode;
2bc8e981 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
fb938cc9 13# do not announce anything under ci - we are watching for STDERR silence
14diag <<EOD unless DBICTest::RunMode->is_ci;
2bc8e981 15
fb938cc9 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
2bc8e981 28ok 1;