Git fork
1#!/bin/sh
2
3test_description='git apply handling submodules'
4
5. ./test-lib.sh
6. "$TEST_DIRECTORY"/lib-submodule-update.sh
7
8apply_index () {
9 git diff --ignore-submodules=dirty "..$1" >diff &&
10 may_only_be_test_must_fail "$2" &&
11 $2 git apply --index diff
12}
13
14test_submodule_switch_func "apply_index"
15
16apply_3way () {
17 git diff --ignore-submodules=dirty "..$1" >diff &&
18 may_only_be_test_must_fail "$2" &&
19 $2 git apply --3way diff
20}
21
22test_submodule_switch_func "apply_3way"
23
24test_done