We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c56b180 commit 432e8a3Copy full SHA for 432e8a3
src/tests/units/series-test.r3
@@ -66,6 +66,7 @@ Rebol [
66
--assert "d" = find/any/reverse/tail tail "ažcdažcd" "žc"
67
68
--test-- "FIND/SAME in block!"
69
+;@@ https://github.com/Oldes/Rebol-issues/issues/1720
70
a: "a"
71
obj1: context [a: 1 b: 2]
72
obj2: context [a: 1 b: 2]
@@ -85,6 +86,10 @@ Rebol [
85
86
--assert 1 = index? find b b/1
87
--assert 1 = index? find b b/2
88
--assert 1 = index? find b b/3
89
+ --assert 1 = index? find/same [1 1.0] 1
90
+ --assert 2 = index? find/same [1 1.0] 1.0
91
+ --assert 2 = index? find/same [1.0 1] 1
92
+ --assert 1 = index? find/same [1.0 1] 1.0
93
94
--test-- "FIND/SAME in string!"
95
--assert "AbcdAe" = find/same "aAbcdAe" "A"
0 commit comments