The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!perl

use Test::More;

use Cwd qw(abs_path);
use File::Path qw(rmtree);

my $path = abs_path('t').'/test_repo';

rmtree $path;
ok ! -e $path;

done_testing;