Skip to content
Snippets Groups Projects
Commit 4189b37d authored by Andy Yates's avatar Andy Yates
Browse files

use Test::More rather than old Test library. Avoids breaking tests when we...

use Test::More rather than old Test library. Avoids breaking tests when we change the numbers of tests run
parent b3b74cd3
No related branches found
No related tags found
No related merge requests found
......@@ -2,11 +2,7 @@ use strict;
use Bio::EnsEMBL::Test::TestUtils;
BEGIN {
$| = 1;
use Test;
plan tests => 2;
}
use Test::More;
use Bio::EnsEMBL::Test::MultiTestDB;
......@@ -84,3 +80,5 @@ ok(@$pfs == 16);
my @pfs = grep{$_->hdescription() eq $hdes} @$pfs;
ok(scalar @pfs > 0);
done_testing();
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment