Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
test for Internet before declaring number of tests that must pass
· 694025b7
Michael R. Crusoe
authored
Dec 28, 2019
694025b7
be more explicit about dependencies
· 496b5a4f
Michael R. Crusoe
authored
Dec 28, 2019
496b5a4f
Hide whitespace changes
Inline
Side-by-side
debian/control
View file @
496b5a4f
...
...
@@ -27,6 +27,7 @@ Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
libbio-perl-perl,
libbio-asn1-entrezgene-perl,
libcache-cache-perl,
libcgi-pm-perl,
libhttp-message-perl,
...
...
debian/patches/fix_tests
0 → 100644
View file @
496b5a4f
From: Michael R. Crusoe <michael.crusoe@gmail.com>
Subject: test for Internet before declaring number of tests that must pass
--- libbio-db-ncbihelper-perl.orig/t/EntrezGene.t
+++ libbio-db-ncbihelper-perl/t/EntrezGene.t
@@ -4,8 +4,8 @@
use strict;
BEGIN {
- use Test::Most tests => 9;
use Test::RequiresInternet;
+ use Test::Most tests => 9;
use_ok('Bio::SeqIO::entrezgene');
use_ok('Bio::DB::EntrezGene');
}
--- libbio-db-ncbihelper-perl.orig/t/GenBank.t
+++ libbio-db-ncbihelper-perl/t/GenBank.t
@@ -4,8 +4,8 @@
use strict;
BEGIN {
- use Test::Most tests => 44;
use Test::RequiresInternet;
+ use Test::Most tests => 44;
use_ok('Bio::DB::GenBank');
}
--- libbio-db-ncbihelper-perl.orig/t/GenPept.t
+++ libbio-db-ncbihelper-perl/t/GenPept.t
@@ -4,8 +4,8 @@
use strict;
BEGIN {
- use Test::Most tests => 21;
use Test::RequiresInternet;
+ use Test::Most tests => 21;
use_ok('Bio::DB::GenPept');
}
--- libbio-db-ncbihelper-perl.orig/t/Query-Genbank.t
+++ libbio-db-ncbihelper-perl/t/Query-Genbank.t
@@ -4,8 +4,8 @@
use strict;
BEGIN {
- use Test::Most tests => 18;
use Test::RequiresInternet;
+ use Test::Most tests => 18;
use_ok('Bio::DB::Query::GenBank');
use_ok('Bio::DB::GenBank');
--- libbio-db-ncbihelper-perl.orig/t/RefSeq.t
+++ libbio-db-ncbihelper-perl/t/RefSeq.t
@@ -4,8 +4,8 @@
use strict;
BEGIN {
- use Test::Most tests => 5;
use Test::RequiresInternet;
+ use Test::Most tests => 5;
use_ok('Bio::DB::GenBank');
}
debian/patches/series
0 → 100644
View file @
496b5a4f
fix_tests