]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/see/see-tests.factor
factor: Retrying on the unit tests. Also normalize some syntax with FUNCTION:.
[factor.git] / basis / see / see-tests.factor
index 0005fb08fd02f923f96a63243aff67e3a0f1f29d..3e5366dde112e87cf219e71f4bad286c638cc0d7 100644 (file)
@@ -3,15 +3,15 @@ IN: see.tests
 
 CONSTANT: test-const 10
 
-[ "IN: see.tests\nCONSTANT: test-const 10 inline\n" ]
+{ "IN: see.tests\nCONSTANT: test-const 10 inline\n" }
 [ [ \ test-const see ] with-string-writer ] unit-test
 
 ALIAS: test-alias +
 
-[ "USING: math ;\nIN: see.tests\nALIAS: test-alias + inline\n" ]
+{ "USING: math ;\nIN: see.tests\nALIAS: test-alias + inline\n" }
 [ [ \ test-alias see ] with-string-writer ] unit-test
 
-[ "IN: see.tests ALIAS: test-alias ( x y -- z )" ]
+{ "IN: see.tests ALIAS: test-alias ( x y -- z )" }
 [ \ test-alias summary ] unit-test
 
-[ ] [ gensym see ] unit-test
+{ } [ gensym see ] unit-test