shell/smoke/t_conditionals
Petr Šplíchal 7f89380569 Add tests from the upstream first repo
Adding an initial set of tests from the upstream first repository:
https://upstreamfirst.fedorainfracloud.org/bash
2018-01-11 11:18:23 +01:00

6 lines
159 B
Text

true && echo -n 'operator,'
if true; then echo -n 'if,'; fi
if ! true; then echo -n 'if,'; else echo -n 'else,'; fi
if [ 'notnul' ]; then echo -n 'test'; fi