File: asciitree.t

package info (click to toggle)
bioperl 1.7.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 35,888 kB
  • sloc: perl: 94,151; xml: 14,982; makefile: 20
file content (40 lines) | stat: -rw-r--r-- 880 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# -*-Perl-*- Test Harness script for Bioperl
# $Id$

# `make test'. After `make install' it should work as `perl test.t'

use strict;

BEGIN {
    use Bio::Root::Test;
    
    test_begin(-tests => 2);
	
	use_ok('Bio::SeqIO');
}

my $verbose = test_debug();

# asciitree is a write-only format
my $in = Bio::SeqIO->new(-format => 'genbank',
						-verbose => $verbose,
						-file => test_input_file('AE003644_Adh-genomic.gb'));
my $seq = $in->next_seq;

my $out_file = test_output_file();
my $out = Bio::SeqIO->new(-file => ">".$out_file,
						-verbose => $verbose,
						-format => 'asciitree');
$out->write_seq($seq);

# this is a bug and is failing on some systems like IRIX (not sure why, maybe
# File::Temp?)

if (-s $out_file) {
	ok(1, "File exists, has contents on ".$^O);
} else {
	TODO: {
        local $TODO = "Output doesn't exists on ".$^O;
		ok(-s $out_file);
	}
}