blob: e7e8ab27159b290a0cfcb77088e7c6053fd0bb72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env perl -w
use strict;
use Test::More;
if (!-d 't-git-repo') {
plan skip_all => 'Testing stage already cleaned.';
}
system('rm -rf t-git-repo');
ok !$?;
done_testing;
|