in reply to Re: CPAN test suites with SQL
in thread CPAN test suites with SQL

I've found Test::TempDir::Tiny to be pretty useful for this. It requires less code (it wraps File::Temp), it handles the cleanup, and also leaves the files on disk if the tests fail.

Replies are listed 'Best First'.
Re^3: CPAN test suites with SQL
by NERDVANA (Priest) on Apr 15, 2024 at 04:55 UTC
    Oh, nice one. I'll probably start using this.