( self )
| 58 | self.assertEqual( c["melon"].value, 2.5) |
| 59 | |
| 60 | def testSlashInKey( self ) : |
| 61 | |
| 62 | c = IECore.CompoundData( { "a/b" : IECore.StringData( "test" ) } ) |
| 63 | IECore.ObjectWriter( c, os.path.join( "test", "compoundData.cob" ) ).write() |
| 64 | c2 = IECore.ObjectReader( os.path.join( "test", "compoundData.cob" ) ).read() |
| 65 | |
| 66 | self.assertEqual( c, c2 ) |
| 67 | |
| 68 | def tearDown( self ) : |
| 69 |
nothing calls this directly
no test coverage detected