diff options
Diffstat (limited to 't/no-option-symmetric')
| -rwxr-xr-x | t/no-option-symmetric | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/t/no-option-symmetric b/t/no-option-symmetric new file mode 100755 index 0000000..82d6b73 --- /dev/null +++ b/t/no-option-symmetric @@ -0,0 +1,28 @@ +#!/bin/sh -e +. t/common.sh + +printf '%s\n' > file \ + "${HEAD} ours" \ + same \ + new \ + "${PARENT} base" \ + same \ + old \ + "${TAIL}" \ + same \ + new \ + "${END} theirs" + +printf '%s\n' > file.expected \ + same \ + "${HEAD} ours" \ + new \ + "${PARENT} base" \ + old \ + "${TAIL}" \ + new \ + "${END} theirs" + +conflict --no-symmetric file + +also_interactive r |
