mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Remove obsolete test for pycharm egg
This commit is contained in:
@@ -1,22 +0,0 @@
|
||||
__author__ = 'Dmitry.Trofimov'
|
||||
|
||||
import unittest
|
||||
import os
|
||||
|
||||
test_data_path = os.path.abspath(os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', '..', '..', 'testData', 'debug'))
|
||||
|
||||
|
||||
class PyDevTestCase(unittest.TestCase):
|
||||
def testZipFileExits(self):
|
||||
from pydevd_file_utils import exists
|
||||
|
||||
self.assertTrue(exists(test_data_path + '/zipped_lib.zip/zipped_module.py'))
|
||||
self.assertFalse(exists(test_data_path + '/zipped_lib.zip/zipped_module2.py'))
|
||||
self.assertFalse(exists(test_data_path + '/zipped_lib2.zip/zipped_module.py'))
|
||||
|
||||
|
||||
def testEggFileExits(self):
|
||||
from pydevd_file_utils import exists
|
||||
|
||||
self.assertTrue(exists(test_data_path + '/pycharm-debug.egg/pydev/pydevd.py'))
|
||||
self.assertFalse(exists(test_data_path + '/pycharm-debug.egg/pydev/pydevd2.py'))
|
||||
Binary file not shown.
Binary file not shown.
@@ -110,12 +110,6 @@ public class PythonDebuggerTest extends PyEnvTestCase {
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
@Staging
|
||||
public void testDebug() { //TODO: merge it into pydev tests
|
||||
unittests("tests_pydevd/test_egg_zip_exist.py");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testConditionalBreakpoint() throws Exception {
|
||||
runPythonTest(new PyDebuggerTask("/debug", "test1.py") {
|
||||
|
||||
Reference in New Issue
Block a user