()
| 23 | assert not cfg.zeromode |
| 24 | |
| 25 | def test_send_appid(): |
| 26 | cfg = config("--appid", "xyz", "send", "--text", "hi") |
| 27 | assert cfg.appid == "xyz" |
| 28 | cfg = config("--appid=xyz", "send", "--text", "hi") |
| 29 | assert cfg.appid == "xyz" |
| 30 | |
| 31 | def test_send_file(): |
| 32 | cfg = config("send", "fn") |