Skip to content

Commit

Permalink
Don't todo tests that work for other people - it causes test failure;…
Browse files Browse the repository at this point in the history
… reverted and changed test to handle presumed difference in Bio::EnsEMBL versions

svn path=/bioperl-run/trunk/; revision=15315
  • Loading branch information
sendu committed Jan 7, 2009
1 parent b9a23c2 commit a39178a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions t/Ensembl.t
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ SKIP: {
# get an adaptor
ok my $adaptor = Bio::Tools::Run::Ensembl->get_adaptor('human', 'Exon');
isa_ok $adaptor, 'Bio::EnsEMBL::DBSQL::ExonAdaptor';
TODO: {
local $TODO = 'species_id is not implemented in ExonAdaptor';
can_ok($adaptor, 'species_id');
#is $adaptor->species_id, 1;
if ($adaptor->can('species_id')) {
is $adaptor->species_id, 1;
}
else {
ok 1;
}

# get an 'easy' gene - one that is in Ensembl
Expand Down

0 comments on commit a39178a

Please sign in to comment.