mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 11:49:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			510 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			510 B
		
	
	
	
		
			Python
		
	
	
	
	
	
''' Test idlelib.scrolledlist.
 | 
						|
 | 
						|
Coverage: 39%
 | 
						|
'''
 | 
						|
from idlelib import scrolledlist
 | 
						|
from test.support import requires
 | 
						|
requires('gui')
 | 
						|
import unittest
 | 
						|
from tkinter import Tk
 | 
						|
 | 
						|
 | 
						|
class ScrolledListTest(unittest.TestCase):
 | 
						|
 | 
						|
    @classmethod
 | 
						|
    def setUpClass(cls):
 | 
						|
        cls.root = Tk()
 | 
						|
 | 
						|
    @classmethod
 | 
						|
    def tearDownClass(cls):
 | 
						|
        cls.root.destroy()
 | 
						|
        del cls.root
 | 
						|
 | 
						|
 | 
						|
    def test_init(self):
 | 
						|
        scrolledlist.ScrolledList(self.root)
 | 
						|
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    unittest.main(verbosity=2)
 |