1# suspend-y.tst: yash-specific test of the suspend built-in
2
3test_oE -e 0 'suspend is a semi-special built-in'
4command -V suspend
5__IN__
6suspend: a semi-special built-in
7__OUT__
8
9test_Oe -e 2 'too many operands'
10suspend foo
11__IN__
12suspend: no operand is expected
13__ERR__
14
15test_Oe -e 2 'invalid option --xxx'
16suspend --no-such=option
17__IN__
18suspend: `--no-such=option' is not a valid option
19__ERR__
20#'
21#`
22
23# vim: set ft=sh ts=8 sts=4 sw=4 noet:
24