Remove some tests that should not be part of jedi.

This commit is contained in:
Dave Halter
2017-05-15 14:51:49 -04:00
parent 206dfd113b
commit e94ab8ca55
2 changed files with 0 additions and 13 deletions

View File

@@ -6,7 +6,6 @@ import pytest
from parso.python import parse
from parso.python import tree
from jedi.parser_utils import get_doc_with_call_signature, get_call_signature
class TestsFunctionAndLambdaParsing(object):
@@ -62,9 +61,3 @@ class TestsFunctionAndLambdaParsing(object):
assert node.annotation is None
else:
assert node.annotation.value == expected_annotation
def test_get_call_signature(self, node, expected):
assert get_call_signature(node) == expected['call_sig']
def test_doc(self, node, expected):
assert get_doc_with_call_signature(node) == (expected['call_sig'] + '\n\n')

View File

@@ -1,6 +0,0 @@
import jedi
def test_form_feed_characters():
s = "\f\nclass Test(object):\n pass"
jedi.Script(s, line=2, column=18).call_signatures()