Code

Merge v1.7.10-rc0 for git l10n update
[git.git] / t / t2006-checkout-index-basic.sh
1 #!/bin/sh
3 test_description='basic checkout-index tests
4 '
6 . ./test-lib.sh
8 test_expect_success 'checkout-index --gobbledegook' '
9         test_expect_code 129 git checkout-index --gobbledegook 2>err &&
10         grep "[Uu]sage" err
11 '
13 test_expect_success 'checkout-index -h in broken repository' '
14         mkdir broken &&
15         (
16                 cd broken &&
17                 git init &&
18                 >.git/index &&
19                 test_expect_code 129 git checkout-index -h >usage 2>&1
20         ) &&
21         grep "[Uu]sage" broken/usage
22 '
24 test_done