test_evaluate -> test_inference

This commit is contained in:
Dave Halter
2019-08-14 23:56:44 +02:00
parent a23bbbfbb9
commit e4d1e5455f
62 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
"""
This is a module that shadows a builtin (intentionally).
It imports a local module, which in turn imports stdlib unittest (the
name shadowed by this module). If that is properly resolved, there's
no problem. However, if jedi doesn't understand absolute_imports, it
will get this module again, causing infinite recursion.
"""
from local_module import Assertions
class TestCase(Assertions):
def test(self):
self.assertT