diff options
author | Teddy Wing | 2018-03-21 18:13:00 +0100 |
---|---|---|
committer | Teddy Wing | 2018-03-21 18:13:00 +0100 |
commit | 25991886eba08a3baa418d7b5f4e5e4eaa5df23b (patch) | |
tree | 3ebd3ecfce83ce5da79e6c442b16c0becfada4fd /t/bin.pm | |
parent | 9a4abcc9b0e1121c89ae8a12be8eeb291e7dd34e (diff) | |
parent | 64fe9fc7fa4e073d6bb97cdee0d2914abb943391 (diff) | |
download | git-branch-list-25991886eba08a3baa418d7b5f4e5e4eaa5df23b.tar.bz2 |
Merge branch 'drop-multiple-branches'
Diffstat (limited to 't/bin.pm')
-rw-r--r-- | t/bin.pm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/t/bin.pm b/t/bin.pm new file mode 100644 index 0000000..ad5b7f1 --- /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-branch-list'); + +1; |