diff options
author | Todd Rinaldo <toddr@cpan.org> | 2020-09-15 21:23:31 -0500 |
---|---|---|
committer | Todd Rinaldo <toddr@cpan.org> | 2020-09-15 23:42:34 -0500 |
commit | 18c72c399196d35c6fc14d5bae4f312deceb8359 (patch) | |
tree | 0d62983c705b00b56a1edc1b0166b6179c2bb500 /cpan/Test-Simple/t/Legacy/todo.t | |
parent | 544e14500f76f6a28da0d5b423ccc23f22723777 (diff) | |
download | perl-18c72c399196d35c6fc14d5bae4f312deceb8359.tar.gz |
Update Test-Simple to CPAN version 1.302181
[DELTA]
1.302181 2020-09-14 09:46:04-07:00 America/Los_Angeles
- put try_sig_mask back where it goes (And add test to prevent this in the future)
- Drop new List::Util requirement back down
1.302180 2020-09-13 23:11:18-07:00 America/Los_Angeles
- No changes since last trial
1.302179 2020-09-12 22:35:19-07:00 America/Los_Angeles (TRIAL RELEASE)
- Bump minimum List::Util version (for uniq)
1.302178 2020-09-07 14:11:52-07:00 America/Los_Angeles (TRIAL RELEASE)
- Move try_sig_mask to the only module that uses it.
- Inherit warnings bitmask in cmp_ok string eval
- Update copyright date
- Improved API for interept {} and what it returns
1.302177 2020-08-06 21:46:06-07:00 America/Los_Angeles
- Minor fix to author downstream test
- No significant changes since the last trial
1.302176 2020-08-05 21:45:19-07:00 America/Los_Angeles (TRIAL RELEASE)
- Fix Test::More's $TODO inside intercept (#862)
Diffstat (limited to 'cpan/Test-Simple/t/Legacy/todo.t')
-rw-r--r-- | cpan/Test-Simple/t/Legacy/todo.t | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpan/Test-Simple/t/Legacy/todo.t b/cpan/Test-Simple/t/Legacy/todo.t index 7d28846857..c5e5a232cf 100644 --- a/cpan/Test-Simple/t/Legacy/todo.t +++ b/cpan/Test-Simple/t/Legacy/todo.t @@ -9,10 +9,13 @@ BEGIN { use Test::More; +use strict; +use warnings; + plan tests => 36; -$Why = 'Just testing the todo interface.'; +my $Why = 'Just testing the todo interface.'; my $is_todo; TODO: { |