Skip to content

Commit 707c373

Browse files
committed
1 parent 8fcc034 commit 707c373

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/tests/units/series-test.r3

+6
Original file line numberDiff line numberDiff line change
@@ -2179,6 +2179,12 @@ Rebol [
21792179
--assert (union/skip [x x 1 2 1 2] [1 4] 2 ) = [x x 1 2] ; like in R2 and Red
21802180
--assert (union/skip [1 2 1 3] [2 4] 2 ) = [1 2 2 4] ; like in R2 and Red
21812181

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+
21822188
--test-- "union/skip with negative skip"
21832189
;@@ https://github.com/Oldes/Rebol-issues/issues/736
21842190
--assert all [

0 commit comments

Comments
 (0)