mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-10-31 16:07:30 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			282 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			282 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import unittest
 | |
| 
 | |
| 
 | |
| class PillowTests(unittest.TestCase):
 | |
|     """
 | |
|     Can we start moving the test suite here?
 | |
|     """
 | |
| 
 | |
|     def test_suite_should_move_here(self):
 | |
|         """
 | |
|         Great idea!
 | |
|         """
 | |
|         assert True is True
 | |
| 
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     unittest.main()
 |