Skip to content

Commit

Permalink
t/Annotation/Annotation.t: remove test for Bio::SeqFeature::Annotated
Browse files Browse the repository at this point in the history
Move testing to Bio-FeatureIO distribution because that's where
Bio::SeqFeature::Annotated is.
  • Loading branch information
carandraug committed Sep 17, 2018
1 parent a1d3ff2 commit 1a2c6e5
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions t/Annotation/Annotation.t
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ BEGIN {
use lib '.';
use Bio::Root::Test;

test_begin(-tests => 152,
test_begin(-tests => 148,
-requires_module => 'Data::Stag');

use_ok('Bio::Annotation::Collection');
Expand Down Expand Up @@ -172,20 +172,6 @@ SKIP: {
is ($termann->as_text, "dumpster|test case|");
}

# AnnotatableI
use Bio::Seq;
my $seq = Bio::Seq->new();
SKIP: {
test_skip(-requires_modules => [qw(Bio::SeqFeature::Annotated URI::Escape)],
-tests => 4);
my $fea = Bio::SeqFeature::Annotated->new();
isa_ok($fea, "Bio::SeqFeatureI",'isa SeqFeatureI');
isa_ok($fea, "Bio::AnnotatableI",'isa AnnotatableI');
$fea = Bio::SeqFeature::Generic->new();
isa_ok($fea, "Bio::SeqFeatureI",'isa SeqFeatureI');
isa_ok($fea, "Bio::AnnotatableI",'isa AnnotatableI');
}

# tests for Bio::Annotation::AnnotationFactory

my $factory = Bio::Annotation::AnnotationFactory->new;
Expand Down

0 comments on commit 1a2c6e5

Please sign in to comment.