finally change name of test.base module to helpers.py, fixes #181

This commit is contained in:
David Halter
2013-08-07 18:35:47 +04:30
parent 45432c6cb0
commit 7ab00242a8
13 changed files with 26 additions and 23 deletions

View File

@@ -1,9 +1,9 @@
import textwrap
from .base import unittest
from .helpers import TestCase
from jedi import Script
class TestCallSignatures(unittest.TestCase):
class TestCallSignatures(TestCase):
def _run(self, source, expected_name, expected_index=0, line=None, column=None):
signatures = Script(source, line, column).call_signatures()