3 test_description
='basic ls-files tests
5 This test runs git ls-files with various unusual or malformed
6 command-line arguments.
13 test_expect_success
'ls-files in empty repository' '
14 git ls-files >actual &&
18 test_expect_success
'ls-files with nonexistent path' '
19 git ls-files doesnotexist >actual &&
23 test_expect_success
'ls-files with nonsense option' '
24 test_expect_code 129 git ls-files --nonsense 2>actual &&
25 grep "[Uu]sage: git ls-files" actual
28 test_expect_success
'ls-files -h in corrupt repository' '
34 test_expect_code 129 git ls-files -h >usage 2>&1
36 grep "[Uu]sage: git ls-files " broken/usage