( self )
| 951 | self.assertEqual( m2, m2c ) |
| 952 | |
| 953 | def testIntersection( self ) : |
| 954 | |
| 955 | m1 = IECore.PathMatcher( [ "/a/b/c/d/myTest", "/a/b/c/myTest", "/a/b/c"] ) |
| 956 | m2 = IECore.PathMatcher( [ "/a/b/c/d/myTest" ] ) |
| 957 | |
| 958 | m3 = m1.intersection( m2 ) |
| 959 | |
| 960 | self.assertEqual( m3.paths(), [ "/a/b/c/d/myTest" ] ) |
| 961 | |
| 962 | def testSize( self ) : |
| 963 |
nothing calls this directly
no test coverage detected