( self )
| 48 | self.assertRaises( Exception, IECoreScene.Font, "notAFont" ) |
| 49 | |
| 50 | def test( self ) : |
| 51 | |
| 52 | f = IECoreScene.Font( os.path.join( "test", "IECore", "data", "fonts", "Vera.ttf" ) ) |
| 53 | m = f.mesh( "hello world" ) |
| 54 | self.assertTrue( m.isInstanceOf( IECoreScene.MeshPrimitive.staticTypeId() ) ) |
| 55 | |
| 56 | def testCharBound( self ) : |
| 57 |
nothing calls this directly
no test coverage detected