From 51ad08a8b780c50aa69f28cee3b1fd674c59c5de Mon Sep 17 00:00:00 2001 From: jeff Date: Fri, 14 Mar 2008 04:38:48 +0000 Subject: Initial import of Net-Prizm --- t/Net-Prizm.t | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 t/Net-Prizm.t (limited to 't') diff --git a/t/Net-Prizm.t b/t/Net-Prizm.t new file mode 100644 index 0000000..57c3f67 --- /dev/null +++ b/t/Net-Prizm.t @@ -0,0 +1,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 ''); + + -- cgit v1.2.1