def test_if_pat_is_not_match(self): actual = if_pat.search('$if:') self.assertIsNone(actual)
def test_if_pat_is_match(self): actual = if_pat.search('$if True:') self.assertIsNotNone(actual) self.assertEqual('True:', actual.group(1))