From a426a5979d0ec5be17b27ba1870e23b62a6bf87a Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Sun, 4 Apr 2021 23:31:35 +0100 Subject: [PATCH] testutil: clarify reason for default paths in new_Stow() --- t/testutil.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/t/testutil.pm b/t/testutil.pm index ff1e6b4..a700bd5 100755 --- a/t/testutil.pm +++ b/t/testutil.pm @@ -81,6 +81,8 @@ sub init_test_dirs { sub new_Stow { my %opts = @_; + # These default paths assume that execution will be triggered from + # within the target directory. $opts{dir} ||= '../stow'; $opts{target} ||= '.'; $opts{test_mode} = 1;