-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!perl | ||
|
||
use v5.20; | ||
use warnings; | ||
|
||
BEGIN { | ||
unless ( $ENV{AUTHOR_TESTING} ) { | ||
print qq{1..0 # SKIP these tests are for testing by the author\n}; | ||
exit; | ||
} | ||
} | ||
|
||
use Test2::V0; | ||
Check failure on line 13 in t/author-changes.t
|
||
|
||
eval "use Test::CPAN::Changes"; | ||
|
||
plan skip_all => "Test::CPAN::Changes not installed" if $@; | ||
|
||
use Plack::Middleware::Statsd; | ||
changes_ok( { version => Plack::Middleware::Statsd->VERSION } ); |