A test suite imported from jedi.

This commit is contained in:
Dave Halter
2017-05-11 09:43:37 -04:00
parent 6caedbdb68
commit 7445c303e3
12 changed files with 1798 additions and 0 deletions

13
test/helpers.py Normal file
View File

@@ -0,0 +1,13 @@
"""
A helper module for testing, improves compatibility for testing (as
``jedi._compatibility``) as well as introducing helper functions.
"""
import sys
if sys.hexversion < 0x02070000:
import unittest2 as unittest
else:
import unittest
TestCase = unittest.TestCase