Update of /cvsroot/pydev/org.python.pydev.refactoring/tests/org/python/pydev/refactoring/tests/codegenerator
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21605/tests/org/python/pydev/refactoring/tests/codegenerator
Modified Files:
AllTests.java
Log Message:
Synching to latest changes:
Pydev
<ul>
<li><strong>Editor</strong>: Cursor settings no longer overridden</li>
<li><strong>Code-completion</strong>: If __all__ is defined with runtime elements (and not only in a single assign statement), it's ignored for code-completion purposes</li>
<li><strong>Debugger</strong>: Pythonpath the same in debug and regular modes (sys.path[0] is the same directory as the file run)</li>
<li><strong>Debugger</strong>: Persist choices done in the debugger when files from the debugger are not found</li>
<li><strong>Interpreter config</strong>: "email" automatically added to the "forced builtins"</li>
<li><strong>Parser</strong>: Correctly recognizing absolute import with 3 or more levels</li>
<li><strong>Syntax check</strong>: Option to do only on active editor</li>
</ul>
Also: tabs changed for spaces
Index: AllTests.java
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev.refactoring/tests/org/python/pydev/refactoring/tests/codegenerator/AllTests.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** AllTests.java 20 Oct 2007 19:31:06 -0000 1.3
--- AllTests.java 27 Sep 2008 20:00:51 -0000 1.4
***************
*** 14,26 ****
public class AllTests {
! public static Test suite() {
! TestSuite suite = new TestSuite("Test for org.python.pydev.refactoring.tests.codegenerator");
! // $JUnit-BEGIN$
! suite.addTest(ConstructorFieldTestSuite.suite());
! suite.addTest(OverrideMethodsTestSuite.suite());
! suite.addTest(GeneratePropertiesTestSuite.suite());
! // $JUnit-END$
! return suite;
! }
}
--- 14,26 ----
public class AllTests {
! public static Test suite() {
! TestSuite suite = new TestSuite("Test for org.python.pydev.refactoring.tests.codegenerator");
! // $JUnit-BEGIN$
! suite.addTest(ConstructorFieldTestSuite.suite());
! suite.addTest(OverrideMethodsTestSuite.suite());
! suite.addTest(GeneratePropertiesTestSuite.suite());
! // $JUnit-END$
! return suite;
! }
}
|