( self )
| 41 | class FontTest( unittest.TestCase ) : |
| 42 | |
| 43 | def testConstructors( self ) : |
| 44 | |
| 45 | f = IECoreImage.Font( os.path.join( "test", "IECore", "data", "fonts", "Vera.ttf" ) ) |
| 46 | |
| 47 | self.assertRaises( Exception, IECoreImage.Font, "notAFont" ) |
| 48 | |
| 49 | def testImages( self ) : |
| 50 |