Remove obsolete test for pycharm egg

This commit is contained in:
Elizaveta Shashkova
2016-08-02 18:55:11 +03:00
parent f45966d5c4
commit 6c3373cf0d
4 changed files with 0 additions and 28 deletions
@@ -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") {