(self)
| 1359 | """Tests for String/Sequence support (gap #4a).""" |
| 1360 | |
| 1361 | def test_string_sort(self): |
| 1362 | s = StringSort() |
| 1363 | assert isinstance(s, StringSortRef) |
| 1364 | assert repr(s) == "String" |
| 1365 | |
| 1366 | def test_string_var(self): |
| 1367 | s = String("s") |
nothing calls this directly
no test coverage detected