Skip to content

Commit

Permalink
Shell: Add tests for 'if'
Browse files Browse the repository at this point in the history
  • Loading branch information
alimpfard authored and awesomekling committed Aug 22, 2020
1 parent b90eb5c commit db18e75
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions Shell/Tests/if.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#!/bin/sh

if test 1 -eq 1 {
# Are comments ok?
# Basic 'if' structure, empty block.
if true {
} else {
exit 2
}
if false {
exit 2
} else {
}

# Basic 'if' structure, without 'else'
if false {
echo "Fail: 'if false' runs the branch"
exit 2
}

# Extended 'cond' form.
if false {
echo "Fail: 'if false' with 'else if' runs first branch"
exit 2
} else if true {
} else {
echo "Fail: 'if false' with 'else if' runs last branch"
exit 2
}

# FIXME: Some form of 'not' would be nice
# &&/|| in condition
if true || false {
} else {
echo "Fail: 'if true || false' runs false branch"
exit 2
}

if true && false {
echo "Fail: 'if true && false' runs true branch"
exit 2
}
} else {
echo "Fail: 'if test 1 -eq 1' runs false branch"
exit 1
}

0 comments on commit db18e75

Please sign in to comment.