Upgrade to Devel::PPPort 3.08_02
[p5sagit/p5-mst-13.2.git] / ext / Devel / PPPort / t / exception.t
1 ################################################################################
2 #
3 #            !!!!!   Do NOT edit this file directly!   !!!!!
4 #
5 #            Edit mktests.PL and/or parts/inc/exception instead.
6 #
7 ################################################################################
8
9 BEGIN {
10   if ($ENV{'PERL_CORE'}) {
11     chdir 't' if -d 't';
12     @INC = ('../lib', '../ext/Devel/PPPort/t') if -d '../lib' && -d '../ext';
13     require Config; import Config;
14     use vars '%Config';
15     if (" $Config{'extensions'} " !~ m[ Devel/PPPort ]) {
16       print "1..0 # Skip -- Perl configured without Devel::PPPort module\n";
17       exit 0;
18     }
19   }
20   else {
21     unshift @INC, 't';
22   }
23
24   sub load {
25     eval "use Test";
26     require 'testutil.pl' if $@;
27   }
28
29   if (7) {
30     load();
31     plan(tests => 7);
32   }
33 }
34
35 use Devel::PPPort;
36 use strict;
37 $^W = 1;
38
39 my $rv;
40
41 $Devel::PPPort::exception_caught = undef;
42
43 $rv = eval { &Devel::PPPort::exception(0) };
44 ok($@, '');
45 ok(defined $rv);
46 ok($rv, 42);
47 ok($Devel::PPPort::exception_caught, 0);
48
49 $Devel::PPPort::exception_caught = undef;
50
51 $rv = eval { &Devel::PPPort::exception(1) };
52 ok($@, "boo\n");
53 ok(not defined $rv);
54 ok($Devel::PPPort::exception_caught, 1);
55