( self )
| 860 | self.assertEqual( set( m2.paths() ), set( expectedPaths + [ "/d/e/g" ] ) ) |
| 861 | |
| 862 | def testNonExistentSubtree( self ) : |
| 863 | |
| 864 | m1 = IECore.PathMatcher( "/a/b" ) |
| 865 | m2 = m1.subTree( "/wot?" ) |
| 866 | |
| 867 | self.assertEqual( m2.paths(), [] ) |
| 868 | |
| 869 | def testSubTreeWithNonTerminatingRoot( self ) : |
| 870 |
nothing calls this directly
no test coverage detected