( self )
| 38 | class ExclusionFrameListTest( unittest.TestCase ) : |
| 39 | |
| 40 | def test( self ) : |
| 41 | |
| 42 | f = IECore.ExclusionFrameList( IECore.FrameRange( 1, 10 ), IECore.FrameRange( 1, 11, 2 ) ) |
| 43 | self.assertTrue( isinstance( f, IECore.ExclusionFrameList ) ) |
| 44 | self.assertEqual( f.asList(), [ 2, 4, 6, 8, 10 ] ) |
| 45 | |
| 46 | def testStr( self ) : |
| 47 |
nothing calls this directly
no test coverage detected