Remove duplicate documentation for SvREFCNT_inc().
[p5sagit/p5-mst-13.2.git] / ext / Devel / PPPort / t / exception.t
CommitLineData
9132e1a3 1################################################################################
2#
3# !!!!! Do NOT edit this file directly! !!!!!
4#
5# Edit mktests.PL and/or parts/inc/exception instead.
6#
7################################################################################
8
9BEGIN {
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 eval "use Test";
25 if ($@) {
26 require 'testutil.pl';
27 print "1..7\n";
28 }
29 else {
30 plan(tests => 7);
31 }
32}
33
34use Devel::PPPort;
35use strict;
36$^W = 1;
37
38my $rv;
39
40$Devel::PPPort::exception_caught = undef;
41
42$rv = eval { &Devel::PPPort::exception(0) };
43ok($@, '');
44ok(defined $rv);
45ok($rv, 42);
46ok($Devel::PPPort::exception_caught, 0);
47
48$Devel::PPPort::exception_caught = undef;
49
50$rv = eval { &Devel::PPPort::exception(1) };
51ok($@, "boo\n");
52ok(not defined $rv);
53ok($Devel::PPPort::exception_caught, 1);
54