(self)
| 76 | """skill_hash — a short, deterministic hash of skill content.""" |
| 77 | |
| 78 | def test_deterministic(self) -> None: |
| 79 | assert skill_hash("hello") == skill_hash("hello") |
| 80 | |
| 81 | def test_different_input_produces_different_hash(self) -> None: |
| 82 | assert skill_hash("hello") != skill_hash("world") |
nothing calls this directly
no test coverage detected