Previously we were using test -(d|f) to verify the presencee of a directory/file, but we already have helper functions, viz, test_path_is_dir and test_path_is_file with same functionality. This patch will replace test -(d|f) calls in t3600-rm.sh. Rohit Ashiwal (1): t3600: use test_path_is_dir and test_path_is_file t/t3600-rm.sh | 96 +++++++++++++++++++++++++-------------------------- 1 file changed, 48 insertions(+), 48 deletions(-) base-commit: 8104ec994ea3849a968b4667d072fedd1e688642 Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-152%2Fr1walz%2Frefactor-tests-v2 Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-152/r1walz/refactor-tests-v2 Pull-Request: https://github.com/gitgitgadget/git/pull/152 Range-diff vs v1: 1: bf5eb04579 ! 1: fcafc87b38 tests: replace `test -(d|f)` with test_path_is_(dir|file) @@ -1,12 +1,16 @@ Author: Rohit Ashiwal <rohit.ashiwal265@xxxxxxxxx> - tests: replace `test -(d|f)` with test_path_is_(dir|file) + t3600: use test_path_is_dir and test_path_is_file - t3600-rm.sh: Previously we were using `test -(d|f)` - to verify the presencee of a directory/file, but we - already have helper functions, viz, test_path_is_dir - and test_path_is_file with same functionality. This - patch will replace `test -(d|f)` calls in t3600-rm.sh. + Previously we were using `test -(d|f)` to verify + the presence of a directory/file, but we already + have helper functions, viz, `test_path_is_dir` + and `test_path_is_file` with better functionality. + This patch will replace `test -(d|f)` calls in t3660.sh + + These helper functions make code more readable + and informative to someone new to code, also + these functions have better error messages Signed-off-by: Rohit Ashiwal <rohit.ashiwal265@xxxxxxxxx> -- gitgitgadget