File: 04_export.t

package info (click to toggle)
libcpan-meta-perl 2.150010-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 960 kB
  • ctags: 154
  • sloc: perl: 3,013; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 446 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl

delete $ENV{PERL_YAML_BACKEND};
delete $ENV{PERL_JSON_BACKEND};

# Testing of basic document structures

use strict;
BEGIN {
	$|  = 1;
	$^W = 1;
}

use Test::More tests => 4;
use Parse::CPAN::Meta;



ok not(defined &main::Load), 'Load is not exported';
ok not(defined &main::Dump), 'Dump is not exported';
ok not(defined &main::LoadFile), 'LoadFile is not exported';
ok not(defined &main::DumpFile), 'DumpFile is not exported';