We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fcc034 commit 707c373Copy full SHA for 707c373
src/tests/units/series-test.r3
@@ -2179,6 +2179,12 @@ Rebol [
2179
--assert (union/skip [x x 1 2 1 2] [1 4] 2 ) = [x x 1 2] ; like in R2 and Red
2180
--assert (union/skip [1 2 1 3] [2 4] 2 ) = [1 2 2 4] ; like in R2 and Red
2181
2182
+--test-- "unique/skip 3"
2183
+ ;@@ https://github.com/Oldes/Rebol-issues/issues/726
2184
+ --assert (unique/skip [1 2 3 4 5 6 1 2 3 4] 2) == [1 2 3 4 5 6] ; like in R2 and Red
2185
+ --assert (unique/skip [1 2 3 4 5 6 1 2 3 4 5 6] 2) == [1 2 3 4 5 6] ; like in R2 and Red
2186
+ --assert (unique/skip [1 2 3 4 5 6 1 2 3 4 5 6] 3) == [1 2 3 4 5 6] ; like in R2 and Red
2187
+
2188
--test-- "union/skip with negative skip"
2189
;@@ https://github.com/Oldes/Rebol-issues/issues/736
2190
--assert all [
0 commit comments