(self)
| 95 | assert all(c in "0123456789abcdef" for c in h) |
| 96 | |
| 97 | def test_unicode_content(self) -> None: |
| 98 | h1 = skill_hash("cafe") |
| 99 | h2 = skill_hash("cafe") |
| 100 | assert h1 == h2 |
| 101 | |
| 102 | def test_multiline_content(self) -> None: |
| 103 | content = "line1\nline2\nline3" |
nothing calls this directly
no test coverage detected