You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
299 B
17 lines
299 B
13 years ago
|
--- t/basic.t
|
||
|
+++ t/basic.t
|
||
14 years ago
|
@@ -4,9 +4,10 @@ use warnings;
|
||
14 years ago
|
use Test::Fatal;
|
||
13 years ago
|
use Test::More;
|
||
14 years ago
|
|
||
|
-use Test::Requires {
|
||
|
- 'Test::Output' => '0.16',
|
||
|
-};
|
||
|
+BEGIN {
|
||
|
+ eval "use Test::Output 0.16;";
|
||
|
+ plan skip_all => "Test::Output 0.16 is required for this test" if $@;
|
||
|
+}
|
||
|
|
||
|
plan tests => 25;
|
||
|
|