]> git.ipfire.org Git - thirdparty/git.git/blob - t/t1003-read-tree-prefix.sh
Git 2.35.8
[thirdparty/git.git] / t / t1003-read-tree-prefix.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2006 Junio C Hamano
4 #
5
6 test_description='git read-tree --prefix test.
7 '
8
9 TEST_PASSES_SANITIZE_LEAK=true
10 . ./test-lib.sh
11
12 test_expect_success setup '
13 echo hello >one &&
14 git update-index --add one &&
15 tree=$(git write-tree) &&
16 echo tree is $tree
17 '
18
19 echo 'one
20 two/one' >expect
21
22 test_expect_success 'read-tree --prefix' '
23 git read-tree --prefix=two/ $tree &&
24 git ls-files >actual &&
25 cmp expect actual
26 '
27
28 test_done