]> git.ipfire.org Git - thirdparty/git.git/blame - t/t2005-checkout-index-symlinks.sh
Merge branch 'wb/fsmonitor-bitmap-fix'
[thirdparty/git.git] / t / t2005-checkout-index-symlinks.sh
CommitLineData
78a8d641
JS
1#!/bin/sh
2#
3# Copyright (c) 2007 Johannes Sixt
4#
5
5be60078 6test_description='git checkout-index on filesystem w/o symlinks test.
78a8d641 7
5be60078 8This tests that git checkout-index creates a symbolic link as a plain
78a8d641
JS
9file if core.symlinks is false.'
10
11. ./test-lib.sh
12
13test_expect_success \
14'preparation' '
5be60078 15git config core.symlinks false &&
6ecfd91d 16l=$(printf file | git hash-object -t blob -w --stdin) &&
5be60078 17echo "120000 $l symlink" | git update-index --index-info'
78a8d641
JS
18
19test_expect_success \
20'the checked-out symlink must be a file' '
5be60078 21git checkout-index symlink &&
78a8d641
JS
22test -f symlink'
23
24test_expect_success \
25'the file must be the blob we added during the setup' '
0cb0e143 26test "$(git hash-object -t blob symlink)" = $l'
78a8d641
JS
27
28test_done