( self )
| 82 | self.assertEqual( l.getDefaultVersion( os.path.join( "maths", "multiply" ) ), 1 ) |
| 83 | |
| 84 | def testDotsInPath( self ) : |
| 85 | |
| 86 | l = IECore.ClassLoader( IECore.SearchPath( os.path.join( "test", "IECore", "ops" ) ) ) |
| 87 | |
| 88 | c = l.load( os.path.join( "path.With.Dot", "multiply" ) ) |
| 89 | |
| 90 | def testExceptions( self ) : |
| 91 |
nothing calls this directly
no test coverage detected