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