diff --git a/tests/test_resolutions.py b/tests/test_resolutions.py index 033c414..c0ded1c 100644 --- a/tests/test_resolutions.py +++ b/tests/test_resolutions.py @@ -123,6 +123,7 @@ def test_can_be_instantiated(self) -> None: def test_the_test(self) -> None: cim = ContainsItemMatching(r"([Ss]pam ?)+").resolve() + assert cim.matches(["Spam", "Eggs", "Spam and eggs"]) assert not cim.matches(["Porridge"])