Skip to content
Snippets Groups Projects
Commit e9f3cf1a authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Added tests for new list_ methods.

parent 00a1628d
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ use Bio::EnsEMBL::Exon;
BEGIN { $| = 1;
use Test;
plan tests => 9;
plan tests => 11;
}
my $loaded = 0;
......@@ -47,3 +47,11 @@ ok($t);
$t->end_Exon($exon);
ok($t);
my $ta = $db->get_TranslationAdaptor();
my $ids = $ta->list_dbIDs();
ok (@{$ids});
my $stable_ids = $ta->list_stable_dbIDs();
ok (@{$stable_ids});
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