blob: 2c489a7b9637a725bd9e50f56a769ec160db4705 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/usr/bin/perl -w
use strict;
use Test::Builder;
BEGIN {
if( $ENV{PERL_CORE} ) {
chdir 't';
@INC = ( '../lib', 'lib' );
}
else {
unshift @INC, 't/lib';
}
}
use Test::Builder::NoOutput;
my $tb = Test::Builder->new;
$tb->ok( !eval { $tb->subtest() } );
$tb->like( $@, qr/^\Qsubtest()'s second argument must be a code ref/ );
$tb->ok( !eval { $tb->subtest("foo") } );
$tb->like( $@, qr/^\Qsubtest()'s second argument must be a code ref/ );
my $foo;
$tb->subtest('Arg passing', sub {
$foo = shift;
$tb->ok(1);
}, 'foo');
$tb->is_eq($foo, 'foo');
$tb->done_testing();
|