()
| 171 | |
| 172 | |
| 173 | def test_stringize_deep_nonstr(): |
| 174 | with pytest.raises(TypeError): |
| 175 | strings.stringize_deep(Convertible(), relaxed=False) |
| 176 | x = Convertible() |
| 177 | assert x == strings.stringize_deep(x) |
| 178 | |
| 179 | |
| 180 | def test_unicodize_deep(): |
nothing calls this directly
no test coverage detected