rcl/golden/json/string_contains.test
Ruud van Asseldonk 811d6e1ff3 Add golden tests for new String builtin methods
And fix a bug in one of the implementations, caught by these tests.
2023-12-26 14:32:26 +01:00

10 lines
170 B
Text

[
"abc".contains("qabcd"),
"abc".contains("abc"),
"abc".contains("aqc"),
"abc".contains("b"),
"abc".contains(""),
]
# output:
[false, true, false, true, true]