(self)
| 1389 | assert is_var(s) |
| 1390 | |
| 1391 | def test_string_concat_operator(self): |
| 1392 | a = StringVal("hello") |
| 1393 | b = StringVal(" world") |
| 1394 | c = a + b |
| 1395 | assert isinstance(c._ast, StrConcatNode) |
| 1396 | |
| 1397 | def test_string_length(self): |
| 1398 | s = String("s") |
nothing calls this directly
no test coverage detected