1234567891011121314151617 #!/usr/bin/perl -T# t/01compile.t# Check that the module can be compiled and loaded properly.## $Id: 01compile.t 8235 2009-07-26 02:57:24Z FREQUENCY@cpan.org $use strict;use warnings;use Test::More tests => 2;use Test::NoWarnings; # 1 test# Check that we can load the moduleBEGIN { use_ok('IO::Journal');}
#!/usr/bin/perl -T
# t/01compile.t
# Check that the module can be compiled and loaded properly.
#
# $Id: 01compile.t 8235 2009-07-26 02:57:24Z FREQUENCY@cpan.org $
use
strict;
warnings;
Test::More
tests
=> 2;
Test::NoWarnings;
# 1 test
# Check that we can load the module
BEGIN {
use_ok(
'IO::Journal'
);
}