blob: c058e1f8f01babc4e28f1e997186de55beda488a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require Test::Simple;
use lib 't/lib';
require Test::Simple::Catch;
my($out, $err) = Test::Simple::Catch::caught();
Test::Simple->import(tests => 5);
ok(0);
ok(0);
ok('');
ok(0);
ok(0);
|