Upgrade to Parse::CPAN::Meta 1.38
[p5sagit/p5-mst-13.2.git] / lib / Parse / CPAN / Meta / t / 05_export.t
1 #!/usr/bin/perl
2
3 # Testing of basic document structures
4
5 BEGIN {
6         if( $ENV{PERL_CORE} ) {
7                 chdir 't';
8                 @INC = ('../lib', 'lib');
9         }
10         else {
11                 unshift @INC, 't/lib/';
12         }
13 }
14
15 use strict;
16 BEGIN {
17         $|  = 1;
18         $^W = 1;
19 }
20
21 use Test::More tests => 4;
22 use Parse::CPAN::Meta;
23
24
25
26 ok not(defined &main::Load), 'Load is not exported';
27 ok not(defined &main::Dump), 'Dump is not exported';
28 ok not(defined &main::LoadFile), 'LoadFile is not exported';
29 ok not(defined &main::DumpFile), 'DumpFile is not exported';