t/SeqFeature/Generic.t: fix typo on required module for testing
[bioperl-live.git] / t / SeqIO / MultiFile.t
blob40f2a21f75f90d45077bf6bcade3ba7f28310924
1 # -*-Perl-*- Test Harness script for Bioperl
2 # $Id$
4 use strict;
6 BEGIN {
7     use Bio::Root::Test;
8     
9     test_begin(-tests => 5);
11     use_ok 'Bio::SeqIO::MultiFile';
14 my $verbose = test_debug();
17 # Test multiple files, with a specified format
18 ok my $mf = Bio::SeqIO::MultiFile->new(
19     -format  => 'Fasta' ,
20     -verbose => $verbose,
21     -files   => [ test_input_file('multi_1.fa'), test_input_file('multi_2.fa')],
24 my $count = 0;
25 while (my $seq = $mf->next_seq() ) {
26     $count++;
28 is $count, 12;
31 # Automatically determine format
32 ok $mf = Bio::SeqIO::MultiFile->new(
33     -verbose => $verbose,
34     -files   => [ test_input_file('multi_1.fa'), test_input_file('multi_2.fa')],
37 is $mf->format, 'fasta';