()
| 10 | # --------------------------------------------------------------------------- |
| 11 | |
| 12 | def test_parse_simple_command(): |
| 13 | prefix, cmd, params = parse_irc_line("NICK Wiz") |
| 14 | assert prefix == "" |
| 15 | assert cmd == "NICK" |
| 16 | assert params == ["Wiz"] |
| 17 | |
| 18 | |
| 19 | def test_parse_with_prefix(): |
nothing calls this directly
no test coverage detected