X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fmsgmap.t;h=2d462dfb0fa5952114331ab83266a3a968946469;hb=af0b0fb7a454470a32c452119d0392e0dedb3fe1;hp=1d7d1e87adbb7bbe3316c9ad86bcbddc920ec24f;hpb=0ad076b1943bf7c65868d1db3cef4bd0ea1ef49a;p=public-inbox.git diff --git a/t/msgmap.t b/t/msgmap.t index 1d7d1e87..2d462dfb 100644 --- a/t/msgmap.t +++ b/t/msgmap.t @@ -1,4 +1,4 @@ -# Copyright (C) 2015-2020 all contributors +# Copyright (C) 2015-2021 all contributors # License: AGPL-3.0+ use strict; use warnings; @@ -12,7 +12,7 @@ my $d = PublicInbox::Msgmap->new($tmpdir, 1); my %mid2num; my %num2mid; my @mids = qw(a@b c@d e@f g@h aa@bb aa@cc); -is_deeply([$d->minmax], [undef,undef], "empty min max on new DB"); +is_deeply([$d->minmax], [0,0], "zero min max on new DB"); foreach my $mid (@mids) { my $n = $d->mid_insert($mid); @@ -60,7 +60,7 @@ my $orig = $d->mid_insert('spam@1'); $d->mid_delete('spam@1'); is($d->mid_insert('spam@2'), 1 + $orig, "last number not recycled"); -my $tmp = $d->tmp_clone; +my $tmp = $d->tmp_clone($tmpdir); is_deeply([$d->minmax], [$tmp->minmax], 'Cloned temporary DB matches'); ok($tmp->mid_delete('spam@2'), 'temporary DB is writable');