mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 09:57:43 +03:00 
			
		
		
		
	Update test as textsize() isn't implemented
This commit is contained in:
		
							parent
							
								
									6da05b4026
								
							
						
					
					
						commit
						31859521c9
					
				| 
						 | 
				
			
			@ -1,11 +1,11 @@
 | 
			
		|||
from helper import unittest, PillowTestCase, hopper
 | 
			
		||||
from helper import unittest, PillowTestCase
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class TestPsDraw(PillowTestCase):
 | 
			
		||||
 | 
			
		||||
    def test_draw_postscript(self):
 | 
			
		||||
 | 
			
		||||
        # Taken from Pillow tutorial:
 | 
			
		||||
        # Based on Pillow tutorial, but there is no textsize:
 | 
			
		||||
        # http://pillow.readthedocs.org/en/latest/handbook/tutorial.html
 | 
			
		||||
 | 
			
		||||
        # Arrange
 | 
			
		||||
| 
						 | 
				
			
			@ -26,16 +26,18 @@ class TestPsDraw(PillowTestCase):
 | 
			
		|||
        ps.image(box, im, 75)
 | 
			
		||||
        ps.rectangle(box)
 | 
			
		||||
 | 
			
		||||
        # draw centered title
 | 
			
		||||
        ps.setfont("HelveticaNarrow-Bold", 36)
 | 
			
		||||
        w, h, b = ps.textsize(title)
 | 
			
		||||
        ps.text((4*72-w/2, 1*72-h), title)
 | 
			
		||||
        # draw title
 | 
			
		||||
        ps.setfont("Courier", 36)
 | 
			
		||||
        ps.text((3*72, 4*72), title)
 | 
			
		||||
 | 
			
		||||
        ps.end_document()
 | 
			
		||||
        fp.close()
 | 
			
		||||
 | 
			
		||||
        # Assert
 | 
			
		||||
        # TODO
 | 
			
		||||
        # Check non-zero file was created
 | 
			
		||||
        import os
 | 
			
		||||
        self.assertTrue(os.path.isfile(tempfile))
 | 
			
		||||
        self.assertGreater(os.path.getsize(tempfile), 0)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
if __name__ == '__main__':
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue
	
	Block a user