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