( self )
| 55 | self.assertEqual( l.versions( os.path.join( "maths", "multiply" ) ), [ 1, 2 ] ) |
| 56 | |
| 57 | def testFinalSlash( self ) : |
| 58 | |
| 59 | l = IECore.ClassLoader( IECore.SearchPath( os.path.join( "test", "IECore", "ops" ) + os.path.sep ) ) |
| 60 | self.assertEqual( l.classNames(), ["bad", "classParameterTest", "classVectorParameterTest", "colorSplineInput", "compoundObjectInOut", "floatParameter", os.path.join( "maths", "multiply" ), "matrixParameter", "meshMerge", "objectVectorInOut", "parameterTypes", os.path.join( "path.With.Dot", "multiply" ), "presetParsing", "splineInput", 'stringParsing', "unstorable" ] ) |
| 61 | |
| 62 | def testStaticLoaders( self ) : |
| 63 |
nothing calls this directly
no test coverage detected