]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/sequences/shifted/shifted-tests.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / sequences / shifted / shifted-tests.factor
index a25a2b883fe9f67d9bd94a5e9b8f975501077f3e..9ae89e9dbe06666f6db3efa5a947ded4d5a747cb 100644 (file)
@@ -3,8 +3,8 @@
 USING: arrays sequences tools.test ;
 IN: sequences.shifted
 
-{ { 1 2 3 7 } } [ 4 iota -1 7 <shifted> >array ] unit-test
-{ { 7 0 1 2 } } [ 4 iota 1 7 <shifted> >array ] unit-test
-{ { 0 1 2 3 } } [ 4 iota 0 f <shifted> >array ] unit-test
-{ { f f f f } } [ 4 iota 4 f <shifted> >array ] unit-test
-{ { f f f f } } [ 4 iota -4 f <shifted> >array ] unit-test
+{ { 1 2 3 7 } } [ 4 <iota> -1 7 <shifted> >array ] unit-test
+{ { 7 0 1 2 } } [ 4 <iota> 1 7 <shifted> >array ] unit-test
+{ { 0 1 2 3 } } [ 4 <iota> 0 f <shifted> >array ] unit-test
+{ { f f f f } } [ 4 <iota> 4 f <shifted> >array ] unit-test
+{ { f f f f } } [ 4 <iota> -4 f <shifted> >array ] unit-test