]> git.vpit.fr Git - perl/modules/Test-Leaner.git/blob - t/16-done_testing.t
Also print the plan at the END when a test failed under 'no_plan'
[perl/modules/Test-Leaner.git] / t / 16-done_testing.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5
6 use Test::Leaner;
7
8 plan 'no_plan';
9
10 pass;
11 pass 'another one';
12
13 done_testing;