(self)
| 26 | ajoin('prefix', 'sub', 'name')) |
| 27 | |
| 28 | def test_3(self): |
| 29 | assert_equal(appendpath('/prefix/sub', '/prefix/sup/name'), |
| 30 | ajoin('prefix', 'sub', 'sup', 'name')) |
| 31 | assert_equal(appendpath('/prefix/sub/sub2', '/prefix/sup/sup2/name'), |
| 32 | ajoin('prefix', 'sub', 'sub2', 'sup', 'sup2', 'name')) |
| 33 | assert_equal(appendpath('/prefix/sub/sub2', '/prefix/sub/sup/name'), |
| 34 | ajoin('prefix', 'sub', 'sub2', 'sup', 'name')) |
| 35 | |
| 36 | class TestMinrelpath: |
| 37 |
nothing calls this directly
no test coverage detected