mirror of
https://github.com/python/cpython.git
synced 2025-07-24 19:54:21 +00:00
11 lines
319 B
Python
11 lines
319 B
Python
import unittest
|
|
import idlelib.CallTips as ct
|
|
|
|
class Get_entityTest(unittest.TestCase):
|
|
def test_bad_entity(self):
|
|
self.assertIsNone(ct.get_entity('1/0'))
|
|
def test_good_entity(self):
|
|
self.assertIs(ct.get_entity('int'), int)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main(verbosity=2, exit=False)
|