diff options
author | Eric Wong <e@80x24.org> | 2019-11-24 00:22:34 +0000 |
---|---|---|
committer | Eric Wong <e@80x24.org> | 2019-11-24 21:46:55 +0000 |
commit | ad6f26f3b9f0e428020d05667987556f8fcbec2f (patch) | |
tree | 56a26871d3f63b3bc057a5ecb0c326d6c1dd3695 /t/psgi_multipart_not.t | |
parent | 2a3e3a0469f54f6a4f80bf04614e5ddd794a6c5e (diff) | |
download | public-inbox-ad6f26f3b9f0e428020d05667987556f8fcbec2f.tar.gz |
tests: use File::Temp->newdir instead of tempdir()
We'll also introduce a tmpdir() API to give tempdirs consistent names.
Diffstat (limited to 't/psgi_multipart_not.t')
-rw-r--r-- | t/psgi_multipart_not.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/psgi_multipart_not.t b/t/psgi_multipart_not.t index 40bc3c18..d3489f2d 100644 --- a/t/psgi_multipart_not.t +++ b/t/psgi_multipart_not.t @@ -3,10 +3,10 @@ use strict; use warnings; use Test::More; -use File::Temp qw/tempdir/; use Email::MIME; use PublicInbox::Config; use PublicInbox::WWW; +require './t/common.perl'; my @mods = qw(DBD::SQLite Search::Xapian HTTP::Request::Common Plack::Test URI::Escape Plack::Builder Plack::Test); foreach my $mod (@mods) { @@ -15,7 +15,7 @@ foreach my $mod (@mods) { } use_ok($_) for @mods; use_ok 'PublicInbox::V2Writable'; -my $repo = tempdir('pi-psgi-multipart-not.XXXXXX', TMPDIR => 1, CLEANUP => 1); +my ($repo, $for_destroy) = tmpdir(); my $ibx = PublicInbox::Inbox->new({ inboxdir => $repo, name => 'multipart-not', |