(self)
| 1374 | assert isinstance(b, StringRef) |
| 1375 | |
| 1376 | def test_string_val(self): |
| 1377 | s = StringVal("hello") |
| 1378 | assert is_string_value(s) |
| 1379 | assert isinstance(s._ast, StringLit) |
| 1380 | assert s._ast.val == "hello" |
| 1381 | |
| 1382 | def test_string_concat(self): |
| 1383 | a = StringVal("hello") |
nothing calls this directly
no test coverage detected