()
| 8 | |
| 9 | |
| 10 | def test_empty() -> None: |
| 11 | assert stringify({}) == "" |
| 12 | assert stringify({"a": {}}) == "" |
| 13 | assert stringify({"a": {"b": {"c": {}}}}) == "" |
| 14 | |
| 15 | |
| 16 | def test_basic() -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected