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

Added test for slice->get_generic_features

parent c43a7310
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ use lib 't';
BEGIN { $| = 1;
use Test;
plan tests => 41;
plan tests => 42;
}
......@@ -127,3 +127,9 @@ ok(%generic_adaptors->{"Repeat"});
eval { my %generic_adpators = $db->get_GenericFeatureAdaptors("Mickey") };
ok($@);
# Slice tests - should these go in slice.t?
my $slice = $db->get_SliceAdaptor()->fetch_by_chr_start_end('X', 1, 10000);
ok($slice);
my %features = $slice->get_generic_features();
ok(%features);
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