aboutsummaryrefslogtreecommitdiff
path: root/tests/test/script/runner/if.testscript
blob: 5fa372bdba434321ac49a07d127e101c5942850c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# file      : tests/test/script/runner/if.testscript
# license   : MIT; see accompanying LICENSE file

.include ../common.testscript

: if-branch
:
$c <<EOI && $b >'if'
if cat <'foo' >'foo'
  echo 'if' >|
else
  echo 'else' >|
end
EOI

: else-branch
:
$c <<EOI && $b >'else'
if cat <'foo' >'bar'
  echo 'if' >|
else
  echo 'else' >|
end
EOI