Bio::Root::RootI->deprecated: fix when no version argument given (issue #263)
[bioperl-live.git] / t / Root / RootIO.t
blobd179da8282280b06ef47d273ce4ca7189b075eca
1 ##############################################
2 # tests http retrieval
3 ##############################################
5 use strict;
6 use warnings;
8 BEGIN {
9     use Bio::Root::Test;
10     test_begin(-tests => 3,
11                -requires_networking => 1);
12     use_ok 'Bio::Root::IO';
15 my $TESTURL = 'http://www.google.com/index.html';
17 my $rio;
19 ok $rio = Bio::Root::IO->new(-url=>$TESTURL), 'default -url method';
20 lives_ok {$rio = Bio::Root::IO->new(-url=>$TESTURL)};