about summary refs log tree commit diff
path: root/third_party/git/t/t3908-stash-in-worktree.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t3908-stash-in-worktree.sh')
-rwxr-xr-xthird_party/git/t/t3908-stash-in-worktree.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/third_party/git/t/t3908-stash-in-worktree.sh b/third_party/git/t/t3908-stash-in-worktree.sh
deleted file mode 100755
index 2b2b366ef9..0000000000
--- a/third_party/git/t/t3908-stash-in-worktree.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-#
-# Copyright (c) 2019 Johannes E Schindelin
-#
-
-test_description='Test git stash in a worktree'
-
-. ./test-lib.sh
-
-test_expect_success 'setup' '
-	test_commit initial &&
-	git worktree add wt &&
-	test_commit -C wt in-worktree
-'
-
-test_expect_success 'apply in subdirectory' '
-	mkdir wt/subdir &&
-	(
-		cd wt/subdir &&
-		echo modified >../initial.t &&
-		git stash &&
-		git stash apply >out
-	) &&
-	grep "\.\.\/initial\.t" wt/subdir/out
-'
-
-test_done