perl-Try-Tiny/Try-Tiny-0.22-old-Test::More.patch
Paul Howarth aacd888ded Update to 0.22
- New upstream release 0.22
  - Add optional test deps as recommended prereqs
    (https://github.com/doy/try-tiny/pull/18)
- Update patch for building with Test::More < 0.88
2014-04-29 23:31:26 +01:00

20 lines
361 B
Diff

--- xt/release/no-tabs.t
+++ xt/release/no-tabs.t
@@ -3,7 +3,7 @@ use warnings;
# this test was generated with Dist::Zilla::Plugin::NoTabsTests 0.07
-use Test::More 0.88;
+use Test::More;
use Test::NoTabs;
my @files = (
@@ -21,5 +21,6 @@ my @files = (
't/when.t'
);
+plan tests => scalar @files;
+
notabs_ok($_) foreach @files;
-done_testing;