| 1 | test_expect_success 'exclamation' ' |
| 2 | # LINT: "! word" is two tokens |
| 3 | if ! condition; then echo nope; else yep; fi && |
| 4 | # LINT: "!word" is single token, not two tokens "!" and "word" |
| 5 | test_prerequisite !MINGW && |
| 6 | # LINT: "word!word" is single token, not three tokens "word", "!", and "word" |
| 7 | mail uucp!address && |
| 8 | # LINT: "!word!" is single token, not three tokens "!", "word", and "!" |
| 9 | echo !whatever! |
| 10 | ' |