Upgrade to Devel::PPPort 3.10_01
[p5sagit/p5-mst-13.2.git] / ext / Devel / PPPort / t / pvs.t
1 ################################################################################
2 #
3 #            !!!!!   Do NOT edit this file directly!   !!!!!
4 #
5 #            Edit mktests.PL and/or parts/inc/pvs instead.
6 #
7 #  This file was automatically generated from the definition files in the
8 #  parts/inc/ subdirectory by mktests.PL. To learn more about how all this
9 #  works, please read the F<HACKERS> file that came with this distribution.
10 #
11 ################################################################################
12
13 BEGIN {
14   if ($ENV{'PERL_CORE'}) {
15     chdir 't' if -d 't';
16     @INC = ('../lib', '../ext/Devel/PPPort/t') if -d '../lib' && -d '../ext';
17     require Config; import Config;
18     use vars '%Config';
19     if (" $Config{'extensions'} " !~ m[ Devel/PPPort ]) {
20       print "1..0 # Skip -- Perl configured without Devel::PPPort module\n";
21       exit 0;
22     }
23   }
24   else {
25     unshift @INC, 't';
26   }
27
28   sub load {
29     eval "use Test";
30     require 'testutil.pl' if $@;
31   }
32
33   if (7) {
34     load();
35     plan(tests => 7);
36   }
37 }
38
39 use Devel::PPPort;
40 use strict;
41 $^W = 1;
42
43 package Devel::PPPort;
44 use vars '@ISA';
45 require DynaLoader;
46 @ISA = qw(DynaLoader);
47 bootstrap Devel::PPPort;
48
49 package main;
50
51 my $x = 'foo';
52
53 ok(Devel::PPPort::newSVpvs(), "newSVpvs");
54
55 Devel::PPPort::sv_catpvs($x);
56 ok($x, "foosv_catpvs");
57
58 Devel::PPPort::sv_setpvs($x);
59 ok($x, "sv_setpvs");
60
61 my %h = ('hv_fetchs' => 42);
62 Devel::PPPort::hv_stores(\%h, 4711);
63 ok(scalar keys %h, 2);
64 ok(exists $h{'hv_stores'});
65 ok($h{'hv_stores'}, 4711);
66 ok(Devel::PPPort::hv_fetchs(\%h), 42);
67