ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/EV/t/00_load.t
Revision: 1.8
Committed: Sun Nov 4 18:35:47 2007 UTC (16 years, 7 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: rel-0_5, rel-0_51
Changes since 1.7: +2 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.4 BEGIN { $| = 1; print "1..4\n"; }
2 root 1.3
3 root 1.8 $^W = 0; # work around some bugs in perl
4    
5 root 1.5 print eval { require EV } ? "" : "not ", "ok 1 # $@\n";
6 root 1.7 print eval { require EV::DNS } ? "" : "not ", "ok 2 # $@\n";
7 root 1.5 print eval { require EV::AnyEvent } ? "" : "not ", "ok 3 # $@\n";
8     print eval { require EV::MakeMaker } ? "" : "not ", "ok 4 # $@\n";