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.t21
1 files changed, 21 insertions, 0 deletions
diff --git a/t/001-setup.t b/t/001-setup.t
new file mode 100644
index 0000000..0e591c4
--- /dev/null
+++ b/t/001-setup.t
@@ -0,0 +1,21 @@
+#!/usr/bin/env perl -w
+
+use strict;
+
+use Test::More;
+
+system('git init t-git-repo');
+ok !$?;
+
+chdir 't-git-repo' or die $!;
+
+system('echo tmp > tmp.txt');
+ok !$?;
+
+system('git add tmp.txt');
+ok !$?;
+
+system('git commit -m "Commit"');
+ok !$?;
+
+done_testing;