aboutsummaryrefslogtreecommitdiffstats
path: root/test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'test.pl')
-rwxr-xr-xtest.pl7
1 files changed, 3 insertions, 4 deletions
diff --git a/test.pl b/test.pl
index 32b1b51..9b0a64f 100755
--- a/test.pl
+++ b/test.pl
@@ -8,7 +8,7 @@ use constant false => 0;
use File::Temp qw(tempfile tempdir tmpnam);
use IPC::Open3 qw(open3);
use Symbol qw(gensym);
-use TAP::Harness;
+use Test::Harness qw(runtests);
use Test::More;
my $tests = 25;
@@ -32,9 +32,8 @@ my $write_to_tmpfile = sub
};
{
- my @tests = glob('t/*.t');
- my $harness = TAP::Harness->new;
- $harness->runtests(@tests);
+ my @test_files = glob('t/*.t');
+ runtests(@test_files);
}
plan tests => $tests;