1
0
forked from VimPlug/jedi

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

@@ -17,7 +17,7 @@ import textwrap
import jedi
from jedi import api_classes
from .base import unittest
from .helpers import TestCase
class MixinTestFullName(object):
@@ -38,7 +38,7 @@ class MixinTestFullName(object):
self.check('from os import path', 'os.path')
class TestFullNameWithGotoDefinitions(MixinTestFullName, unittest.TestCase):
class TestFullNameWithGotoDefinitions(MixinTestFullName, TestCase):
operation = 'goto_definitions'
def test_tuple_mapping(self):
@@ -48,11 +48,11 @@ class TestFullNameWithGotoDefinitions(MixinTestFullName, unittest.TestCase):
any_re""", 're.RegexObject')
class TestFullNameWithCompletions(MixinTestFullName, unittest.TestCase):
class TestFullNameWithCompletions(MixinTestFullName, TestCase):
operation = 'completions'
class TestFullDefinedName(unittest.TestCase):
class TestFullDefinedName(TestCase):
"""
Test combination of ``obj.full_name`` and ``jedi.defined_names``.
"""