(self)
| 1393 | assert isinstance(length._ast, StrLenNode) |
| 1394 | |
| 1395 | def test_contains(self): |
| 1396 | s = String("s") |
| 1397 | t = StringVal("abc") |
| 1398 | c = Contains(s, t) |
| 1399 | assert isinstance(c._ast, StrContainsNode) |
| 1400 | |
| 1401 | def test_prefix_of(self): |
| 1402 | s = String("s") |