Upgrade to Devel::PPPort 3.08_01
[p5sagit/p5-mst-13.2.git] / ext / Devel / PPPort / t / Sv_set.t
CommitLineData
0d0f8426 1################################################################################
2#
3# !!!!! Do NOT edit this file directly! !!!!!
4#
5# Edit mktests.PL and/or parts/inc/Sv_set 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';
f2ab5a41 27 print "1..5\n";
0d0f8426 28 }
29 else {
f2ab5a41 30 plan(tests => 5);
0d0f8426 31 }
32}
33
34use Devel::PPPort;
35use strict;
36$^W = 1;
37
38my $foo = 5;
39ok(&Devel::PPPort::TestSvUV_set($foo, 12345), 42);
40ok(&Devel::PPPort::TestSvPVX_const("mhx"), 43);
41ok(&Devel::PPPort::TestSvPVX_mutable("mhx"), 44);
42
f2ab5a41 43my $bar = [];
44
45bless $bar, 'foo';
46ok($bar->x(), 'foobar');
47
48Devel::PPPort::TestSvSTASH_set($bar, 'bar');
49ok($bar->x(), 'hacker');
50
51package foo;
52
53sub x { 'foobar' }
54
55package bar;
56
57sub x { 'hacker' }
58