Make all idle test case names end with 'Test'.
This commit is contained in:
parent
fdfb0050bb
commit
4bd31292c2
|
@ -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):
|
||||
|
|
|
@ -22,7 +22,7 @@ class Dummy_name_dialog:
|
|||
orig_mbox = name_dialog_module.tkMessageBox
|
||||
showerror = Mbox.showerror
|
||||
|
||||
class TestConfigName(unittest.TestCase):
|
||||
class ConfigNameTest(unittest.TestCase):
|
||||
dialog = Dummy_name_dialog()
|
||||
|
||||
@classmethod
|
||||
|
|
Loading…
Reference in New Issue