about summary refs log tree commit diff
path: root/third_party/git/t/t2014-checkout-switch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t2014-checkout-switch.sh')
-rwxr-xr-xthird_party/git/t/t2014-checkout-switch.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/third_party/git/t/t2014-checkout-switch.sh b/third_party/git/t/t2014-checkout-switch.sh
deleted file mode 100755
index ccfb147113..0000000000
--- a/third_party/git/t/t2014-checkout-switch.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-test_description='Peter MacMillan'
-. ./test-lib.sh
-
-test_expect_success setup '
-	echo Hello >file &&
-	git add file &&
-	test_tick &&
-	git commit -m V1 &&
-	echo Hello world >file &&
-	git add file &&
-	git checkout -b other
-'
-
-test_expect_success 'check all changes are staged' '
-	git diff --exit-code
-'
-
-test_expect_success 'second commit' '
-	git commit -m V2
-'
-
-test_expect_success 'check' '
-	git diff --cached --exit-code
-'
-
-test_done