rcl/golden/error/std_string_contains_not_string.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

14 lines
234 B
Text

"abc".contains(123)
# output:
stdin:1:16
1 │ "abc".contains(123)
╵ ^~~
Error: Needle must be a string.
stdin:1:15
1 │ "abc".contains(123)
╵ ^
In call to method 'String.contains'.