mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	
		
			
	
	
		
			12 lines
		
	
	
	
		
			320 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
	
		
			320 B
		
	
	
	
		
			Python
		
	
	
	
	
	
|   | import unittest | ||
|  | import idlelib.CallTips as ct | ||
|  | 
 | ||
|  | class Test_get_entity(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) |