( self )
| 53 | self.assertEqual( s.getPaths( os.pathsep ), os.pathsep.join( [ "a", "b", "c" ] ) ) |
| 54 | |
| 55 | def testFind( self ) : |
| 56 | |
| 57 | s = IECore.SearchPath( os.path.join( "test", "IECore", "data", "pdcFiles" ), os.pathsep ) |
| 58 | |
| 59 | self.assertEqual( s.find( "particleShape1.250.pdc" ), os.path.join( "test", "IECore", "data", "pdcFiles", "particleShape1.250.pdc" ) ) |
| 60 | |
| 61 | def testCopyConstructor( self ) : |
| 62 |
nothing calls this directly
no test coverage detected