aboutsummaryrefslogtreecommitdiffstats
path: root/t/001-setup.t
blob: 0789bd70bb015e7e8bcef0dd35b90439502d6457 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env perl

use strict;
use warnings;

use Test::More;

system('mkdir -p t/git-repo');
ok !$?;

chdir 't/git-repo' or die $!;

done_testing;