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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
## name standard failures
## failures 12
## cut
use Test::More tests => 10;
ok($foo);
ok(!$foo);
is(1,2);
isnt(1,2);
like('foo',qr/f/);
unlike('foo',qr/f/);
cmp_ok(1,'==',2);
is_deeply('literal','literal');
is_deeply([], []);
is_deeply({}, {});
pass();
fail();
#-----------------------------------------------------------------------------
## name standard passing
## failures 0
## cut
ok($foo);
ok(!$foo);
is(1,2);
isnt(1,2);
like('foo',qr/f/);
unlike('foo',qr/f/);
cmp_ok(1,'==',2);
is_deeply('literal','literal');
is_deeply([], []);
is_deeply({}, {});
pass();
fail();
#-----------------------------------------------------------------------------
## name more passing
## failures 0
## cut
use Test::More tests => 10;
ok($foo,'label');
ok(!$foo,'label');
is(1,2,'label');
isnt(1,2,'label');
like('foo',qr/f/,'label');
unlike('foo',qr/f/,'label');
cmp_ok(1,'==',2,'label');
is_deeply('literal','literal','label');
pass('label');
fail('label');
#-----------------------------------------------------------------------------
## name empty array and hash parsing
## failures 0
## cut
is_deeply([],[],'label');
is_deeply({},{},'label');
#-----------------------------------------------------------------------------
## name exceptions
## failures 1
## parms {modules => 'Test::Foo Test::Bar'}
## cut
use Test::Bar tests => 10;
ok($foo);
#-----------------------------------------------------------------------------
## name more exceptions
## failures 0
## parms {modules => 'Test::Foo Test::Bar'}
## cut
use Test::Baz tests => 10;
ok($foo);
#-----------------------------------------------------------------------------
## name RT 24924, is_deeply
## failures 0
## cut
use Test::More;
is_deeply( { foo => 1 }, { foo => 1 }, 'Boldly criticize where nobody has criticize before.' );
is_deeply( { get_empty_array() }, {}, 'Wrap sub-call in hash constructor' );
|