projects
/
p5sagit/Try-Tiny.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
4845abf
)
skip test if Capture::Tiny is too old (Martin Popel, fixes #17)
Jesse Luehrs [Tue, 15 Apr 2014 13:19:45 +0000 (09:19 -0400)]
t/global_destruction_load.t
patch
|
blob
|
blame
|
history
diff --git
a/t/global_destruction_load.t
b/t/global_destruction_load.t
index
acf3a8c
..
7262399
100644
(file)
--- a/
t/global_destruction_load.t
+++ b/
t/global_destruction_load.t
@@
-4,7
+4,7
@@
use Test::More;
BEGIN {
plan skip_all => 'Capture::Tiny required'
- unless eval { require Capture::Tiny; 1 };
+ unless eval { require Capture::Tiny 0.12; 1 };
plan tests => 3;
Capture::Tiny->import(qw(capture_stderr));
}