aboutsummaryrefslogtreecommitdiff
path: root/t/t1501-worktree.sh
diff options
context:
space:
mode:
authorSZEDER Gábor <szeder@ira.uka.de>2009-02-14 17:16:28 +0100
committerJunio C Hamano <gitster@pobox.com>2009-02-14 21:29:46 -0800
commit8fb3c00d2ea4dad96fe977f8983ba0376e0c4986 (patch)
treef18414d7f7794cac50a4ade3d6f62151cc2d6f67 /t/t1501-worktree.sh
parentd0268de6d755c72ff375ec95a0cc0dbd99dc31e2 (diff)
downloadgit-8fb3c00d2ea4dad96fe977f8983ba0376e0c4986.tar.gz
git-8fb3c00d2ea4dad96fe977f8983ba0376e0c4986.tar.xz
Move 'rev-parse --git-dir' test to t1500
Commit 72183cb2 (Fix gitdir detection when in subdir of gitdir, 2009-01-16) added a test to 't1501-worktree' to check the behaviour of 'git rev-parse --git-dir' in a special case. However, t1501 is about testing separate work tree setups, and not about basic 'rev-parse' functionality, which is tested in t1500-rev-parse. Therefore, this patch moves that test to t1500. Signed-off-by: SZEDER Gábor <szeder@ira.uka.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t1501-worktree.sh')
-rwxr-xr-xt/t1501-worktree.sh7
1 files changed, 0 insertions, 7 deletions
diff --git a/t/t1501-worktree.sh b/t/t1501-worktree.sh
index 27dc6c55d..f6a6f839a 100755
--- a/t/t1501-worktree.sh
+++ b/t/t1501-worktree.sh
@@ -92,13 +92,6 @@ cd sub/dir || exit 1
test_rev_parse 'in repo.git/sub/dir' false true true sub/dir/
cd ../../../.. || exit 1
-test_expect_success 'detecting gitdir when cwd is in a subdir of gitdir' '
- (expected=$(pwd)/repo.git &&
- cd repo.git/refs &&
- unset GIT_DIR &&
- test "$expected" = "$(git rev-parse --git-dir)")
-'
-
test_expect_success 'repo finds its work tree' '
(cd repo.git &&
: > work/sub/dir/untracked &&