1 # -*-Perl-*- Test Harness script for Bioperl
10 test_begin(-tests => 6);
15 # There are many other tests of fasta I/O in t/, this
16 # is a dedicated script that could be further customized
18 my $verbose = test_debug();
20 my $io = Bio::SeqIO->new(-format => '',
22 -file => test_input_file('test.fasta'));
24 ok(my $seq = $io->next_seq);
25 is($seq->length, 358);
26 is($seq->display_id,'roa1_drome');
27 is($seq->desc,'Rea guano receptor type III >> 0.1');
28 is($seq->alphabet,'protein');