Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions t/01everything.t
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use Storable;

our $debug = 1;

plan tests => 48;
plan tests => 47;

# Insert your test code below (better if it prints "ok 13"
# (correspondingly "not ok 13") depending on the success of chunk 13
Expand Down Expand Up @@ -83,9 +83,6 @@ for my $o ({ name => "original", obj => $t }, { name => "thawed", obj => $thawed
ok($o->{obj}->climb, "$o->{name}: climb");
}

eval '$t->add_string("_")'; # invalid key
like($@, qr/invalid/, 'adding "_"');

ok($t->add_string("0.0.0.0/0"), "add 0.0.0.0/0");

$thawed = Storable::thaw(Storable::nfreeze($t));
Expand Down