aboutsummaryrefslogtreecommitdiffstats
path: root/t/999-teardown.t
blob: ff39a990047f15af2c91b706aa0c4c92b9fea2d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env perl

use strict;
use warnings;

use Test::More;

chdir 't' or die $!;

if (!-d 'git-repo') {
	plan skip_all => 'Testing stage already cleaned.';
}

system('rm -rf git-repo');
ok !$?;

done_testing;