rcl/golden/json/string_ends_with.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
174 B
Text

[
"abc".ends_with("qabc"),
"abc".ends_with("abc"),
"abc".ends_with("qbc"),
"abc".ends_with("c"),
"abc".ends_with(""),
]
# output:
[false, true, false, true, true]