()
| 24 | |
| 25 | |
| 26 | def test_parse_trailing_with_spaces(): |
| 27 | prefix, cmd, params = parse_irc_line("PRIVMSG #chan :hello world from bot") |
| 28 | assert cmd == "PRIVMSG" |
| 29 | assert params == ["#chan", "hello world from bot"] |
| 30 | |
| 31 | |
| 32 | def test_parse_empty_returns_none(): |
nothing calls this directly
no test coverage detected