( self )
| 65 | self.assertNotEqual( h, IECore.MurmurHash() ) |
| 66 | |
| 67 | def testRepr( self ) : |
| 68 | |
| 69 | h = IECore.MurmurHash() |
| 70 | h.append( 42 ) |
| 71 | h.append( "world" ) |
| 72 | h2 = eval( repr( h ) ) |
| 73 | |
| 74 | self.assertEqual( h, h2 ) |
| 75 | |
| 76 | def testFromString( self ) : |
| 77 |
nothing calls this directly
no test coverage detected