]> gitweb.factorcode.org Git - factor.git/blob - core/make/make-tests.factor
lint.vocabs: fix help-lint for find-unused-in-file.
[factor.git] / core / make / make-tests.factor
1 USING: make sequences tools.test ;
2
3 { "ABCD" } [ [ "ABCD" [ , ] each ] "" make ] unit-test
4
5 { H{ { "key" "value" } } }
6 [ [ "value" "key" ,, ] H{ } make ] unit-test
7
8 { { { 1 2 } } } [ [ 2 1 ,, ] { } make ] unit-test