maint: remove Travis stuff which has been replaced with Github actions (#325)
[bioperl-live.git] / t / AlignIO / msf.t
blob3a6df7588ba8deaaf32029f4546b2ac6093e3f66
1 # -*-Perl-*- Test Harness script for Bioperl
2 # $Id: msf.t 14971 2008-10-28 16:08:52Z cjfields $
4 use strict;
6 BEGIN {
7     use Bio::Root::Test;
8     
9     test_begin(-tests => 4);
10         
11         use_ok('Bio::AlignIO::msf');
14 my $DEBUG = test_debug();
16 my ($str,$aln,$strout,$status);
18 # MSF
19 $str = Bio::AlignIO->new(
20     '-file' => test_input_file("testaln.msf"));
21 $aln = $str->next_aln();
22 isa_ok($aln,'Bio::Align::AlignI');
23 is $aln->get_seq_by_pos(1)->get_nse, '1433_LYCES/9-246', "msf input test";
25 $strout = Bio::AlignIO->new(
26    '-file' => ">".test_output_file(), 
27                             '-format' => 'msf');
28 $status = $strout->write_aln($aln);
29 is $status, 1, "msf output test";