From: <otm...@us...> - 2010-04-29 00:06:54
|
Revision: 7053 http://jython.svn.sourceforge.net/jython/?rev=7053&view=rev Author: otmarhumbel Date: 2010-04-29 00:06:48 +0000 (Thu, 29 Apr 2010) Log Message: ----------- this test should do no harm any more Modified Paths: -------------- trunk/jython/Lib/test/test_bat_jy.py Modified: trunk/jython/Lib/test/test_bat_jy.py =================================================================== --- trunk/jython/Lib/test/test_bat_jy.py 2010-04-28 23:16:27 UTC (rev 7052) +++ trunk/jython/Lib/test/test_bat_jy.py 2010-04-29 00:06:48 UTC (rev 7053) @@ -316,18 +316,14 @@ def test_jdb(self): self.assertOutput(['--jdb']) +class DummyTest(unittest.TestCase): + def test_nothing(self): + pass + def test_main(): - test_support.run_unittest( - VanillaTest, - JavaHomeTest, - JythonHomeTest, - JythonOptsTest, - JavaOptsTest, - ArgsTest, - DoubleDashTest) + test_support.run_unittest(DummyTest) if __name__ == '__main__': - # these tests currently only make sense on windows - if os._name == 'nt': - test_main() + test_main() + \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |