[Python-checkins] cpython (3.3): Make all idle test case names end with 'Test'.

terry.reedy python-checkins at python.org
Tue Jul 30 07:37:57 CEST 2013


http://hg.python.org/cpython/rev/aa13693e3356
changeset:   84900:aa13693e3356
branch:      3.3
parent:      84898:ffc7ea3c04a5
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Tue Jul 30 01:36:48 2013 -0400
summary:
  Make all idle test case names end with 'Test'.

files:
  Lib/idlelib/idle_test/test_calltips.py    |  2 +-
  Lib/idlelib/idle_test/test_config_name.py |  2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/idlelib/idle_test/test_calltips.py b/Lib/idlelib/idle_test/test_calltips.py
--- a/Lib/idlelib/idle_test/test_calltips.py
+++ b/Lib/idlelib/idle_test/test_calltips.py
@@ -1,7 +1,7 @@
 import unittest
 import idlelib.CallTips as ct
 
-class Test_get_entity(unittest.TestCase):
+class Get_entityTest(unittest.TestCase):
     def test_bad_entity(self):
         self.assertIsNone(ct.get_entity('1/0'))
     def test_good_entity(self):
diff --git a/Lib/idlelib/idle_test/test_config_name.py b/Lib/idlelib/idle_test/test_config_name.py
--- a/Lib/idlelib/idle_test/test_config_name.py
+++ b/Lib/idlelib/idle_test/test_config_name.py
@@ -22,7 +22,7 @@
 orig_mbox = name_dialog_module.tkMessageBox
 showerror = Mbox.showerror
 
-class TestConfigName(unittest.TestCase):
+class ConfigNameTest(unittest.TestCase):
     dialog = Dummy_name_dialog()
 
     @classmethod

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list