summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/cpan/autodie/t/skip.t
blob: 724cd659aa1f7ad9492a82ba8b839f93af06e566 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/perl
use strict;
use warnings;
use Test::More tests => 6;
use FindBin qw($Bin);
use lib $Bin;
use autodie_skippy;

eval { autodie_skippy->fail_open() };

ok($@,                           "autodie_skippy throws exceptions.");
isa_ok($@, 'autodie::exception', 'Autodie exceptions correct class');
is($@->package, 'main',          'Skippy classes are skipped.');

eval { autodie_unskippy->fail_open() };

ok($@,                             "autodie_skippy throws exceptions.");
isa_ok($@, 'autodie::exception',   'Autodie exceptions correct class');
is($@->package, 'autodie_unskippy','Unskippy classes are not skipped.');