mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	
		
			
	
	
		
			13 lines
		
	
	
	
		
			344 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			13 lines
		
	
	
	
		
			344 B
		
	
	
	
		
			Python
		
	
	
	
	
	
|   | import unittest | ||
|  | import idlelib.PathBrowser as PathBrowser | ||
|  | 
 | ||
|  | class PathBrowserTest(unittest.TestCase): | ||
|  | 
 | ||
|  |     def test_DirBrowserTreeItem(self): | ||
|  |         # Issue16226 - make sure that getting a sublist works | ||
|  |         d = PathBrowser.DirBrowserTreeItem('') | ||
|  |         d.GetSubList() | ||
|  | 
 | ||
|  | if __name__ == '__main__': | ||
|  |     unittest.main(verbosity=2, exit=False) |