mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-05-05 22:11:12 +08:00
17 lines
363 B
Perl
17 lines
363 B
Perl
#!/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);
|
|
}
|
|
}
|
|
|
|
use Test::More tests => 1;
|
|
use Test::Script::Run;
|
|
|
|
run_ok( 'feedgnuplot', ['--help'], 'feedgnuplot can run');
|
|
|