From: Jesse Luehrs Date: Tue, 15 Apr 2014 13:19:45 +0000 (-0400) Subject: skip test if Capture::Tiny is too old (Martin Popel, fixes #17) X-Git-Tag: Try-Tiny-0.21~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b7f4fe11d53b76071d4999073e49c8919d0570dd;p=p5sagit%2FTry-Tiny.git skip test if Capture::Tiny is too old (Martin Popel, fixes #17) --- diff --git a/t/global_destruction_load.t b/t/global_destruction_load.t index acf3a8c..7262399 100644 --- 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)); }