()
| 271 | |
| 272 | |
| 273 | def test_string_imm(): |
| 274 | s0 = rx.StringImm("hello") |
| 275 | s1 = rx.StringImm("hello") |
| 276 | assert s0.value == "hello" |
| 277 | _check_equal(s0, s1) |
| 278 | _check_json_roundtrip(s0) |
| 279 | |
| 280 | |
| 281 | def test_datatype_imm(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…