source: trunk/essentials/dev-lang/perl/lib/Pod/t/Functions.t@ 3184

Last change on this file since 3184 was 3181, checked in by bird, 19 years ago

perl 5.8.8

File size: 4.6 KB
Line 
1#!perl
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6}
7
8use File::Basename;
9use File::Spec;
10
11use Test::More;
12plan tests => 9;
13
14
15use_ok( 'Pod::Functions' );
16
17# How do you test exported vars?
18my( $pkg_ref, $exp_ref ) = ( \%Pod::Functions::Kinds, \%Kinds );
19is( $pkg_ref, $exp_ref, '%Pod::Functions::Kinds exported' );
20
21( $pkg_ref, $exp_ref ) = ( \%Pod::Functions::Type, \%Type );