(self, t, *expected)
| 189 | self.assert_in("parse", tip) |
| 190 | |
| 191 | def check_args(self, t, *expected): |
| 192 | for x in expected: |
| 193 | if x == t[2]: |
| 194 | return |
| 195 | self.fail("Found: %s. Expected: %s" % (t[2], expected)) |
| 196 | |
| 197 | def assert_args(self, tok, args, tips): |
| 198 | if not isinstance(args, (list, tuple)): |
no outgoing calls
no test coverage detected