perltodo.pod: add perlio todos/thinkabouts
[p5sagit/p5-mst-13.2.git] / ext / Devel / PPPort / t / pvs.t
CommitLineData
f2ab5a41 1################################################################################
2#
3# !!!!! Do NOT edit this file directly! !!!!!
4#
5# Edit mktests.PL and/or parts/inc/pvs 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
c07deaaf 24 sub load {
25 eval "use Test";
26 require 'testutil.pl' if $@;
f2ab5a41 27 }
c07deaaf 28
29 if (7) {
30 load();
f2ab5a41 31 plan(tests => 7);
32 }
33}
34
35use Devel::PPPort;
36use strict;
37$^W = 1;
38
236afa0a 39package Devel::PPPort;
40use vars '@ISA';
41require DynaLoader;
42@ISA = qw(DynaLoader);
43bootstrap Devel::PPPort;
44
45package main;
46
f2ab5a41 47my $x = 'foo';
48
49ok(Devel::PPPort::newSVpvs(), "newSVpvs");
50
51Devel::PPPort::sv_catpvs($x);
52ok($x, "foosv_catpvs");
53
54Devel::PPPort::sv_setpvs($x);
55ok($x, "sv_setpvs");
56
57my %h = ('hv_fetchs' => 42);
58Devel::PPPort::hv_stores(\%h, 4711);
59ok(scalar keys %h, 2);
60ok(exists $h{'hv_stores'});
61ok($h{'hv_stores'}, 4711);
62ok(Devel::PPPort::hv_fetchs(\%h), 42);
63