(self, tok, tips)
| 208 | raise AssertionError("%s not in %s", tok, tips) |
| 209 | |
| 210 | def assert_in(self, tok, tips): |
| 211 | for a in tips[1]: |
| 212 | if tok == a[0]: |
| 213 | return a |
| 214 | raise AssertionError("%s not in %s" % (tok, tips)) |
| 215 | |
| 216 | def test_search(self): |
| 217 | s = _pydev_imports_tipper.search_definition("inspect.ismodule") |
no outgoing calls
no test coverage detected