(self, fake_kb)
| 479 | |
| 480 | class TestSafeJoinUnderRoot: |
| 481 | def test_normal(self, fake_kb): |
| 482 | p = k._safe_join_under_root("raw/foo.md") |
| 483 | assert p is not None |
| 484 | assert p == (fake_kb / "raw" / "foo.md").resolve() |
| 485 | |
| 486 | def test_empty_rejected(self, fake_kb): |
| 487 | assert k._safe_join_under_root("") is None |
nothing calls this directly
no outgoing calls
no test coverage detected