From 2af62461bc358d3de426a9df2ba976ba804242d1 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sat, 19 Mar 2022 16:34:39 +0100 Subject: [PATCH] Add test for mismatch on both command and param --- irctest/self_tests/cases.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/irctest/self_tests/cases.py b/irctest/self_tests/cases.py index edc4c05..eda4b5d 100644 --- a/irctest/self_tests/cases.py +++ b/irctest/self_tests/cases.py @@ -271,6 +271,25 @@ MESSAGE_SPECS: List[Tuple[Dict, List[str], List[str], List[str]]] = [ "expected params to match ['nick', ListRemainder(StrRe(r'[A-Z]+=.*'), min_length=1)], got ['nick', 'foo=1']", ] ), + ( + # the specification: + dict( + command="PING", + params=["abc"] + ), + # matches: + [ + "PING abc", + ], + # and does not match: + [ + "PONG def" + ], + # and they each error with: + [ + "expected command to be PING, got PONG" + ] + ), ] # fmt: on