Codebase list libautobox-core-perl / 9705365
remove tests that require having Test::Exception Bruno Vecchi 14 years ago
1 changed file(s) with 0 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
00 #!/usr/bin/env perl
11 use Test::More;
2 use Test::Exception;
32 use autobox::Core;
43
54 my %hash = ( 1 => 'foo', 2 => 'bar', 3 => 'bar' );
1312
1413 my %nested = ( 1 => { foo => 'bar' }, 2 => 'bar' );
1514
16 dies_ok { %nested->flip } 'Dies if values are not valid hash keys';
17
1815 done_testing;