1 2 3 4 5 6 7 8 9 10 11 12 13 14
#!/bin/sh . "$HARNESS" false should_return_nonzero() { ! false } should_return_nonzero_w_flags() { ! false -a 123 foobar } runtests \ should_return_nonzero \ should_return_nonzero_w_flags