aboutsummaryrefslogtreecommitdiffstats
path: root/t/001-setup.t
diff options
context:
space:
mode:
Diffstat (limited to 't/001-setup.t')
-rw-r--r--t/001-setup.t13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/001-setup.t b/t/001-setup.t
new file mode 100644
index 0000000..0789bd7
--- /dev/null
+++ b/t/001-setup.t
@@ -0,0 +1,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;