( self )
| 72 | self.assertNotEqual( d, dd ) |
| 73 | |
| 74 | def testIO( self ) : |
| 75 | |
| 76 | s = IECore.Rampff( ( ( 0, 1 ), ( 1, 2 ), ( 2, 3 ), ( 3, 4 ) ), IECore.RampInterpolation.MonotoneCubic ) |
| 77 | |
| 78 | sd = IECore.RampffData( s ) |
| 79 | |
| 80 | IECore.ObjectWriter( sd, os.path.join( "test", "IECore", "RampData.cob" ) ).write() |
| 81 | |
| 82 | sdd = IECore.ObjectReader( os.path.join( "test", "IECore", "RampData.cob" ) ).read() |
| 83 | |
| 84 | self.assertEqual( sd, sdd ) |
| 85 | |
| 86 | def testColorIO( self ) : |
| 87 |
nothing calls this directly
no test coverage detected