ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro-MP/t/00_load.t
Revision: 1.1
Committed: Thu Oct 1 23:56:31 2009 UTC (16 years, 8 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: rel-0_1, HEAD
Log Message:
*** empty log message ***

File Contents

# Content
1 BEGIN { $| = 1; print "1..1\n"; }
2
3 my $idx;
4
5 for my $module (qw(
6 Coro::MP
7 )) {
8 eval "use $module";
9 print $@ ? "not " : "", "ok ", ++$idx, " # $module ($@)\n";
10 }
11