]> gitweb.factorcode.org Git - factor.git/blob - extra/code-arrays/code-arrays-tests.factor
98adefe1896e2ac1d96c6ecf59e79e13ca1b4ea8
[factor.git] / extra / code-arrays / code-arrays-tests.factor
1 ! Copyright (C) 2011 Doug Coleman.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: code-arrays locals math tools.test ;
4 IN: code-arrays.tests
5
6 [ { 1 2 9 } ] [ {{ 1 2 3 sq }} ] unit-test
7 [ { 1 2 { 9 } } ] [ {{ 1 2 {{ 3 sq }} }} ] unit-test
8
9 [ H{ { 9 3 } { 4 1 } } ] [ H{{ {{ 3 sq 3 }} {{ 2 sq 1 }} }} ] unit-test
10
11 :: local-code-arrays ( -- seq ) {{ 1 2 3 + }} ;
12
13 [ { 1 5 } ] [ local-code-arrays ] unit-test