1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
#
#===============================================================================
#
# FILE: 00.load.t
#
# DESCRIPTION: module load test
#
# FILES: ---
# BUGS: ---
# NOTES: ---
# AUTHOR: Dr. Fritz Mehner (fgm), mehner.fritz@web.de
# VERSION: 1.0
# CREATED: 06.06.2007 19:51:15 CEST
#===============================================================================
use strict;
use warnings;
use Test::More tests => 1; # last test to print
BEGIN {
use_ok( 'Graphics::GnuplotIF' );
}
diag( "Testing GnuplotIF $Graphics::GnuplotIF::VERSION" );
|