Git fork
at reftables-rust 39 lines 739 B view raw
1#!/bin/sh 2# 3# Copyright (c) 2010 Peter Collingbourne 4# 5 6test_description='git apply submodule tests' 7 8 9. ./test-lib.sh 10 11test_expect_success setup ' 12 cat > create-sm.patch <<EOF && 13diff --git a/dir/sm b/dir/sm 14new file mode 160000 15index 0000000..0123456 16--- /dev/null 17+++ b/dir/sm 18@@ -0,0 +1 @@ 19+Subproject commit $(test_oid numeric) 20EOF 21 cat > remove-sm.patch <<EOF 22diff --git a/dir/sm b/dir/sm 23deleted file mode 160000 24index 0123456..0000000 25--- a/dir/sm 26+++ /dev/null 27@@ -1 +0,0 @@ 28-Subproject commit $(test_oid numeric) 29EOF 30' 31 32test_expect_success 'removing a submodule also removes all leading subdirectories' ' 33 git apply --index create-sm.patch && 34 test -d dir/sm && 35 git apply --index remove-sm.patch && 36 test \! -d dir 37' 38 39test_done