[Pydev-cvs] org.python.pydev/tests/pysrc/testlib/unittest guitestcase.py,NONE,1.1 anothertest.py,NON
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2005-02-03 12:31:23
|
Update of /cvsroot/pydev/org.python.pydev/tests/pysrc/testlib/unittest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16984/tests/pysrc/testlib/unittest Modified Files: __init__.py Added Files: guitestcase.py anothertest.py Log Message: more tests to code completion --- NEW FILE: guitestcase.py --- from testlib.unittest import testcase class GUITest(testcase.TestCase): def SetWidget(self, widget, show=None, wait=None): pass Index: __init__.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/tests/pysrc/testlib/unittest/__init__.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** __init__.py 2 Feb 2005 15:56:19 -0000 1.1 --- __init__.py 3 Feb 2005 12:31:14 -0000 1.2 *************** *** 1,3 **** --- 1,5 ---- from unittest import main from testlib.unittest.testcase import TestCase + from testlib.unittest.guitestcase import GUITest + from testlib.unittest.anothertest import * TestCaseAlias = TestCase --- NEW FILE: anothertest.py --- from testlib.unittest import testcase class AnotherTest(testcase.TestCase): def another(self): pass |