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

Added test for type storing and retrieval.

parent f2e0d636
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ use warnings;
BEGIN { $| = 1;
use Test;
plan tests => 42;
plan tests => 43;
}
use Bio::EnsEMBL::Test::MultiTestDB;
......@@ -90,7 +90,8 @@ my $xref = Bio::EnsEMBL::DBEntry->new
-priority => "5",
-db_display_name => "Nice friendly name",
-info_type => "PROJECTION",
-info_text => "from human gene ENSG0000011111"
-info_text => "from human gene ENSG0000011111",
-type => "ARRAY"
);
......@@ -167,6 +168,9 @@ $ident_count = count_rows($db, 'identity_xref');
debug( "Number of identity_xrefs = $ident_count" );
ok( $ident_count == 2 );
# Check type storing and retrieval
ok($xref->type() eq 'ARRAY');
$multi->restore();
......
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