xref: /openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta/t/parse-cpan-meta/04_export.t (revision 5759b3d249badf144a6240f7eec4dcf9df003e6b)
1#!/usr/bin/perl
2
3delete $ENV{PERL_YAML_BACKEND};
4delete $ENV{PERL_JSON_BACKEND};
5
6# Testing of basic document structures
7
8use strict;
9BEGIN {
10	$|  = 1;
11	$^W = 1;
12}
13
14use Test::More tests => 4;
15use Parse::CPAN::Meta;
16
17
18
19ok not(defined &main::Load), 'Load is not exported';
20ok not(defined &main::Dump), 'Dump is not exported';
21ok not(defined &main::LoadFile), 'LoadFile is not exported';
22ok not(defined &main::DumpFile), 'DumpFile is not exported';
23