( self )
| 50 | self.assertEqual( str( f ), "1-10!1-11x2" ) |
| 51 | |
| 52 | def testRepr( self ) : |
| 53 | import IECore |
| 54 | f = IECore.ExclusionFrameList( IECore.FrameRange( 1, 10 ), IECore.FrameRange( 1, 11, 2 ) ) |
| 55 | self.assertEqual( f, eval( repr( f ) ) ) |
| 56 | |
| 57 | def testParsing( self ) : |
| 58 |
nothing calls this directly
no test coverage detected