From 0a8c96cd227668a9ccbf61efc7c781eeb13537fc Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Mon, 15 May 2017 14:53:50 -0400 Subject: [PATCH] Remove a test that is really not necessary anymore, because the issues that it was covering back then are not issues anymore with the new infrastructure. --- test/test_parser/test_old_fast_parser.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/test/test_parser/test_old_fast_parser.py b/test/test_parser/test_old_fast_parser.py index 6fe989b4..e8fc725d 100644 --- a/test/test_parser/test_old_fast_parser.py +++ b/test/test_parser/test_old_fast_parser.py @@ -28,17 +28,6 @@ def test_carriage_return_splitting(): assert [n.value for lst in module.get_used_names().values() for n in lst] == ['Foo'] -def test_class_in_docstr(): - """ - Regression test for a problem with classes in docstrings. - """ - a = '"\nclasses\n"' - jedi.Script(a, 1, 0)._get_module() - - b = a + '\nimport os' - assert jedi.Script(b, 4, 8).goto_assignments() - - def check_p(src, number_parsers_used, number_of_splits=None, number_of_misses=0): if number_of_splits is None: number_of_splits = number_parsers_used