feedgnuplot/t/00-load.t

17 lines
363 B
Perl
Raw Normal View History

2011-01-24 11:57:23 +08:00
#!/usr/bin/perl
# require a threaded perl for my tests. This block lifted verbatim from the cpantesters wiki
BEGIN {
use Config;
if (! $Config{'useithreads'}) {
print("1..0 # Skip: Perl not compiled with 'useithreads'\n");
exit(0);
}
}
2011-01-24 11:57:23 +08:00
use Test::More tests => 1;
use Test::Script::Run;
run_ok( 'feedgnuplot', ['--help'], 'feedgnuplot can run');
2011-01-24 11:57:23 +08:00