~ubuntu-branches/ubuntu/precise/bioperl/precise

« back to all changes in this revision

Viewing changes to t/AlignIO/po.t

  • Committer: Bazaar Package Importer
  • Author(s): Ilya Barygin
  • Date: 2010-01-27 22:48:22 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100127224822-ebot4qbrjxcv38au
Tags: 1.6.1-1ubuntu1
* Merge from Debian testing, remaining changes:
  - disable tests, they produce a FTBFS trying to access the network 
    during run.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
        isa_ok($str, 'Bio::AlignIO');
32
32
        $aln = $str->next_aln();
33
33
        isa_ok($aln,'Bio::Align::AlignI');
34
 
        is $aln->no_sequences, 6;
 
34
        is $aln->num_sequences, 6;
35
35
        
36
36
        # output is? i.e. does conversion from clustalw to po give the same alignment?
37
37
        $str = Bio::AlignIO->new(
52
52
        isa_ok($str,'Bio::AlignIO');
53
53
        my $aln2 = $str->next_aln();
54
54
        isa_ok($aln2,'Bio::Align::AlignI');
55
 
        is $aln2->no_sequences, $aln->no_sequences;
 
55
        is $aln2->num_sequences, $aln->num_sequences;
56
56
        is $aln2->length, $aln->length;
57
57
}