removed load test, since the functional tests all supersede it

This allows me to drop the dependency on Test::Script::Run
This commit is contained in:
Dima Kogan 2013-10-19 22:47:20 -07:00
parent f83d8db27a
commit 0f4fc69835
2 changed files with 0 additions and 17 deletions

View File

@ -1,7 +1,6 @@
Makefile.PL
MANIFEST
bin/feedgnuplot
t/00-load.t
t/manifest.t
t/plots.t
Changes

View File

@ -1,16 +0,0 @@
#!/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');