summaryrefslogtreecommitdiff
path: root/t/Net-Prizm.t
blob: 57c3f67f616554d6d062de803020c18538aabfea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl Net-Prizm.t'

# Not very exciting testing

use Test;
BEGIN { plan tests => 3 };
eval "use Net::Prizm";
ok($@ eq '');

no Net::Prizm;
eval "use Net::Prizm qw(PrizmElement)";
ok($@ eq '');

no Net::Prizm;
eval "use Net::Prizm qw(BadClass)";
ok($@ ne '');