From ae4ebe19b66e856758cbd3a9ed768ae146c004cd Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Mon, 14 Sep 2020 00:33:14 +0200 Subject: Add TAP test harness Copied with alterations from git-branch-list. --- t/bin.pm | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 t/bin.pm (limited to 't/bin.pm') 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; -- cgit v1.2.3