diff options
Diffstat (limited to '')
| -rwxr-xr-x | t/select-tail-multiple-files | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/t/select-tail-multiple-files b/t/select-tail-multiple-files new file mode 100755 index 0000000..f2c8ae8 --- /dev/null +++ b/t/select-tail-multiple-files @@ -0,0 +1,30 @@ +#!/bin/sh -e +. t/common.sh + +printf '%s\n' > first \ + "${HEAD} first" \ + first-head \ + "${TAIL}" \ + first-tail \ + "${END}" + +printf '%s\n' > first.expected \ + first-tail + +printf '%s\n' > second \ + before \ + "${HEAD} second" \ + second-head \ + "${PARENT} middle" \ + second-middle \ + "${TAIL}" \ + second-tail \ + "${END}" + +printf '%s\n' > second.expected \ + before \ + second-tail + +normal --select-tail --no-reduce first second + +also_interactive tt |
