~ubuntu-branches/ubuntu/trusty/bioperl/trusty

« back to all changes in this revision

Viewing changes to t/RemoteDB/Query/GenBank.t

  • Committer: Bazaar Package Importer
  • Author(s): Charles Plessy
  • Date: 2011-06-17 13:51:18 UTC
  • mfrom: (3.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20110617135118-hncy38e0134j8oi5
Tags: 1.6.901-1
* New upstream release.
* Point debian/watch to search.cpan.org.
* Build using dh and overrides:
  - Use Debhelper 8 (debian/rules, debian/control).
  - Simplified debian/rules.
* Split into libbio-perl-perl, as discussed with the Debian Perl team.
  (debian/control, debian/bioperl.install, debian libbio-perl-perl.install)
* debian/control:
  - Incremented Standards-Version to reflect conformance with Policy 3.9.2.
    No other changes needed.
  - Vcs-Browser URL made redirectable to viewvc.
  - Removed useless ‘svn’ in the Vcs-Svn URL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*-Perl-*- Test Harness script for Bioperl
2
 
# $Id: GenBank.t 15649 2009-04-17 15:08:36Z cjfields $
 
2
# $Id$
3
3
 
4
4
use strict;
5
5
 
7
7
        use lib '.';
8
8
        use Bio::Root::Test;
9
9
        
10
 
        test_begin(-tests => 21,
 
10
        test_begin(-tests => 18,
11
11
                           -requires_modules => [qw(IO::String
12
12
                                                                            LWP::UserAgent
13
13
                                                                                HTTP::Request::Common)],
50
50
        $done++;
51
51
    }
52
52
    skip('No seqs returned', 5) if !$done;
53
 
    is $done, 4;
 
53
    is $done, 1;
54
54
}
55
55
 
56
56
$seq = $seqio = undef;