added cpan tests

This commit is contained in:
Dima Kogan 2011-01-23 19:57:23 -08:00
parent 3c52be3284
commit 984a5a2539
2 changed files with 20 additions and 0 deletions

7
t/00-load.t Normal file
View File

@ -0,0 +1,7 @@
#!/usr/bin/perl
use Test::More tests => 1;
use Test::Script::Run;
run_ok( 'feedGnuplot', ['--help'], 'feedGnuplot can run');

13
t/manifest.t Normal file
View File

@ -0,0 +1,13 @@
#!perl -T
use strict;
use warnings;
use Test::More;
unless ( $ENV{RELEASE_TESTING} ) {
plan( skip_all => "Author tests not required for installation" );
}
eval "use Test::CheckManifest 0.9";
plan skip_all => "Test::CheckManifest 0.9 required" if $@;
ok_manifest();