From 6a20ab40011ec71ec915f9a16cd547188dbe9b60 Mon Sep 17 00:00:00 2001 From: Magali Ruffier <mr6@ebi.ac.uk> Date: Fri, 6 Dec 2013 13:06:15 +0000 Subject: [PATCH] added test for new count_all_by_Slice method --- modules/t/transcript.t | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modules/t/transcript.t b/modules/t/transcript.t index f4e546019f..bde80c8789 100644 --- a/modules/t/transcript.t +++ b/modules/t/transcript.t @@ -281,6 +281,15 @@ ok(@transcripts == 25); $transcriptCount = $ta->count_all_by_biotype(['protein_coding', 'pseudogene']); ok($transcriptCount == 25); + +# +# test TranscriptAdaptor::fetch_all_by_Slice +# +note("Test fetch_all_by_Slice"); +@transcripts = @{$ta->fetch_all_by_Slice($slice)}; +$transcriptCount = $ta->count_all_by_Slice($slice); +is(@transcripts, $transcriptCount, "Counted as many transcripts as were fetched from slice"); + # # test TranscriptAdaptor::fetch_all_by_source # -- GitLab