maint: remove Travis stuff which has been replaced with Github actions (#325)
[bioperl-live.git] / t / Tools / Tmhmm.t
blobe52d10c7323e0bd1167d13cb17e05074a92e3131
1 # -*-Perl-*- Test Harness script for Bioperl
2 # $Id$
4 use strict;
6 BEGIN { 
7     use Bio::Root::Test;
8     
9     test_begin(-tests => 12);
10         
11         use_ok('Bio::Tools::Tmhmm');
14 my $infile = test_input_file('tmhmm.out');
16 ok my $parser = Bio::Tools::Tmhmm->new(-file=>$infile), 'new()';
18 my @feat;
19 while ( my $feat = $parser->next_result ) {
20   push @feat, $feat;
23 is @feat, 3, 'got 3 feat';
25 is $feat[0]->seq_id,      'my_sequence_id';
26 is $feat[0]->source_tag,  'TMHMM2.0';
27 is $feat[0]->primary_tag, 'transmembrane';
30 my $raa_test_data = [
31   [ 54, 76],
32   [116, 138],
33   [151, 173],
36 for (0..(scalar(@feat)-1)) {
37         is $feat[$_]->start, $raa_test_data->[$_]->[0];
38         is $feat[$_]->end, $raa_test_data->[$_]->[1];