| 1 | #!/bin/sh |
| 2 | # |
| 3 | # Copyright (c) 2007 Johannes Sixt |
| 4 | # |
| 5 | |
| 6 | test_description='git checkout-index on filesystem w/o symlinks test. |
| 7 | |
| 8 | This tests that git checkout-index creates a symbolic link as a plain |
| 9 | file if core.symlinks is false.' |
| 10 | |
| 11 | . ./test-lib.sh |
| 12 | |
| 13 | test_expect_success \ |
| 14 | 'preparation' ' |
| 15 | git config core.symlinks false && |
| 16 | l=$(printf file | git hash-object -t blob -w --stdin) && |
| 17 | echo "120000 $l symlink" | git update-index --index-info' |
| 18 | |
| 19 | test_expect_success \ |
| 20 | 'the checked-out symlink must be a file' ' |
| 21 | git checkout-index symlink && |
| 22 | test -f symlink' |
| 23 | |
| 24 | test_expect_success 'the file must be the blob we added during the setup' ' |
| 25 | echo "$l" >expect && |
| 26 | git hash-object -t blob symlink >actual && |
| 27 | test_cmp expect actual |
| 28 | ' |
| 29 | |
| 30 | test_done |