( self )
| 908 | self.assertTrue( m.isEmpty() ) |
| 909 | |
| 910 | def testPrefixNotAdded( self ) : |
| 911 | |
| 912 | m = IECore.PathMatcher() |
| 913 | m.addPaths( IECore.PathMatcher( [ "/a" ] ), "/prefix" ) |
| 914 | self.assertEqual( m.paths(), [ "/prefix/a" ] ) |
| 915 | |
| 916 | def testEmptyStringIsNotAPath( self ) : |
| 917 |
nothing calls this directly
no test coverage detected