String with special characters roundtrips correctly.
(self)
| 168 | _assert_roundtrip_eq(tvm_ffi.convert("x" * 1000)) |
| 169 | |
| 170 | def test_special_chars(self) -> None: |
| 171 | """String with special characters roundtrips correctly.""" |
| 172 | _assert_roundtrip_eq(tvm_ffi.convert('hello\nworld\t"quotes"')) |
| 173 | |
| 174 | def test_unicode(self) -> None: |
| 175 | """Unicode string roundtrips correctly.""" |
nothing calls this directly
no test coverage detected