diff --git a/modules/t/translation.t b/modules/t/translation.t index e5fe5b5ee49104be4afcba1d4e8ad79e34f18ecc..645bd020982864429bd3f811afc8ea2602498e71 100644 --- a/modules/t/translation.t +++ b/modules/t/translation.t @@ -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}); +