sync with main trunk
[bioperl-live.git] / t / SeqIO / asciitree.t
blob379130162a74160d76a2a8a8ef9688c535fa2369
1 # -*-Perl-*- Test Harness script for Bioperl
2 # $Id$
4 # `make test'. After `make install' it should work as `perl test.t'
6 use strict;
8 BEGIN {
9         use lib '.';
10     use Bio::Root::Test;
11     
12     test_begin(-tests => 2);
13         
14         use_ok('Bio::SeqIO');
17 my $verbose = test_debug();
19 # asciitree is a write-only format
20 my $in = Bio::SeqIO->new(-format => 'genbank',
21                                                 -verbose => $verbose,
22                                                 -file => test_input_file('AE003644_Adh-genomic.gb'));
23 my $seq = $in->next_seq;
25 my $out_file = test_output_file();
26 my $out = Bio::SeqIO->new(-file => ">".$out_file,
27                                                 -verbose => $verbose,
28                                                 -format => 'asciitree');
29 $out->write_seq($seq);
30 ok (-s $out_file);