summaryrefslogtreecommitdiff
path: root/t/storable-test.pl
diff options
context:
space:
mode:
Diffstat (limited to 't/storable-test.pl')
-rw-r--r--t/storable-test.pl13
1 files changed, 6 insertions, 7 deletions
diff --git a/t/storable-test.pl b/t/storable-test.pl
index 33deb6f..63ca5b1 100644
--- a/t/storable-test.pl
+++ b/t/storable-test.pl
@@ -11,17 +11,16 @@ if (@ARGV && $ARGV[0] eq "store") {
print "# store\n";
store [URI->new("http://search.cpan.org")], 'urls.sto';
} else {
- print "# retrieve\n";
+ require Test::More;
+ Test::More->import(tests => 3);
+ note("retrieve");
my $a = retrieve 'urls.sto';
my $u = $a->[0];
#use Data::Dumper; print Dumper($a);
- print "not " unless $u eq "http://search.cpan.org";
- print "ok 1\n";
+ is($u, "http://search.cpan.org");
- print "not " unless $u->scheme eq "http";
- print "ok 2\n";
+ is($u->scheme, "http");
- print "not " unless ref($u) eq "URI::http";
- print "ok 3\n";
+ is(ref($u), "URI::http");
}