Blame t/100_load.t

Packit 7ef13a
# Before `make install' is performed this script should be runnable with
Packit 7ef13a
# `make test'. After `make install' it should work as `perl test.t'
Packit 7ef13a
Packit 7ef13a
######################### We start with some black magic to print on failure.
Packit 7ef13a
Packit 7ef13a
BEGIN { $| = 1; $loaded = 0; print "1..1\n"; }
Packit 7ef13a
END { print "not ok 1\n" unless $loaded; }
Packit 7ef13a
Packit 7ef13a
use IO::Multiplex;
Packit 7ef13a
$loaded = 1;
Packit 7ef13a
print "ok 1\n";
Packit 7ef13a
Packit 7ef13a
######################### End of black magic.
Packit 7ef13a
Packit 7ef13a
# Insert your test code below (better if it prints "ok 13"
Packit 7ef13a
# (correspondingly "not ok 13") depending on the success of chunk 13
Packit 7ef13a
# of the test code):