]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t9902-completion.sh
Merge branch 'en/fill-directory-exponential'
[thirdparty/git.git] / t / t9902-completion.sh
index 5505e5aa249e43b88455b0565f0f9348546d5e4c..3c44af69401594545082c47b16d5a98262c5302f 100755 (executable)
@@ -1638,6 +1638,11 @@ test_expect_success 'complete files' '
        echo modify > modified &&
        test_completion "git add " "modified" &&
 
+       mkdir -p some/deep &&
+       touch some/deep/path &&
+       test_completion "git add some/" "some/deep" &&
+       git clean -f some &&
+
        touch untracked &&
 
        : TODO .gitignore should not be here &&