( self )
| 38 | class testReversedFrameList( unittest.TestCase ) : |
| 39 | |
| 40 | def test( self ) : |
| 41 | |
| 42 | r = IECore.ReversedFrameList( IECore.FrameRange( 1, 11, 2 ) ) |
| 43 | self.assertEqual( r.asList(), [ 11, 9, 7, 5, 3, 1 ] ) |
| 44 | |
| 45 | def testParsing( self ) : |
| 46 |
nothing calls this directly
no test coverage detected