mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			344 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 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)
 |