aboutsummaryrefslogtreecommitdiffstats
path: root/t/bin.pm
diff options
context:
space:
mode:
authorTeddy Wing2020-09-14 00:33:14 +0200
committerTeddy Wing2020-09-14 00:33:14 +0200
commitae4ebe19b66e856758cbd3a9ed768ae146c004cd (patch)
tree35cacf7c04f0816fa8eab62577ba11aaaa5b75a2 /t/bin.pm
parent3507f0c1540871ea815359b16ccf23af79bd8e30 (diff)
downloadgit-todo-ae4ebe19b66e856758cbd3a9ed768ae146c004cd.tar.bz2
Add TAP test harness
Copied with alterations from git-branch-list.
Diffstat (limited to 't/bin.pm')
-rw-r--r--t/bin.pm13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/bin.pm b/t/bin.pm
new file mode 100644
index 0000000..e216c97
--- /dev/null
+++ b/t/bin.pm
@@ -0,0 +1,13 @@
+package Bin;
+
+use strict;
+use warnings;
+
+use Exporter qw(import);
+our @EXPORT = qw($BIN);
+
+use File::Spec;
+
+our $BIN = File::Spec->rel2abs('git-todo');
+
+1;