Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Mojolicious CPAN distribution.

Report information
The Basics
Id: 59122
Status: resolved
Priority: 0/
Queue: Mojolicious

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Request to clean up temp dirs used when testing.
Hello and thanks for Mojolicious, I noticed a few temp dirs not being cleaned up when testing: t/mojo/loader.t < my $dir = File::Temp::tempdir(); --- Show quoted text
> my $dir = File::Temp::tempdir( CLEANUP=>1 );
t/mojo/message.t < File::Spec->catfile(File::Temp::tempdir(), ("MOJO_TMP." . time . ".txt")); --- Show quoted text
> File::Spec->catfile(File::Temp::tempdir( CLEANUP => 1 ),
("MOJO_TMP." . time . ".txt")); t/mojo/template.t < my $dir = File::Temp::tempdir(); --- Show quoted text
> my $dir = File::Temp::tempdir( CLEANUP => 1 );
Cheers, Peter (Stig) Edwards