(self, path1)
| 1414 | assert (atime2 - atime1) <= duration |
| 1415 | |
| 1416 | def test_commondir(self, path1): |
| 1417 | # XXX This is here in local until we find a way to implement this |
| 1418 | # using the subversion command line api. |
| 1419 | p1 = path1.join("something") |
| 1420 | p2 = path1.join("otherthing") |
| 1421 | assert p1.common(p2) == path1 |
| 1422 | assert p2.common(p1) == path1 |
| 1423 | |
| 1424 | def test_commondir_nocommon(self, path1): |
| 1425 | # XXX This is here in local until we find a way to implement this |