]> gitweb.factorcode.org Git - factor.git/blobdiff - core/generic/parser/parser-tests.factor
Revert "factor: rename [ ] [ ] unit-test -> { } [ ] unit-test using a refactoring...
[factor.git] / core / generic / parser / parser-tests.factor
index 0d813c37880c233fb8675035ec598a5668cec5fe..11702b404257745a0e544ff3c35dae325525155c 100644 (file)
@@ -2,12 +2,12 @@ USING: generic.parser tools.test ;
 
 IN: generic.parser.tests
 
-{ t } [ ( -- ) ( -- ) method-effect= ] unit-test
-{ t } [ ( a -- b ) ( x -- y ) method-effect= ] unit-test
-{ f } [ ( a b -- c ) ( x -- y ) method-effect= ] unit-test
-{ f } [ ( a -- b ) ( x y -- z ) method-effect= ] unit-test
+[ t ] [ ( -- ) ( -- ) method-effect= ] unit-test
+[ t ] [ ( a -- b ) ( x -- y ) method-effect= ] unit-test
+[ f ] [ ( a b -- c ) ( x -- y ) method-effect= ] unit-test
+[ f ] [ ( a -- b ) ( x y -- z ) method-effect= ] unit-test
 
-{ t } [ ( -- * ) ( -- ) method-effect= ] unit-test
-{ f } [ ( -- * ) ( x -- y ) method-effect= ] unit-test
-{ t } [ ( x -- * ) ( x -- y ) method-effect= ] unit-test
-{ t } [ ( x -- * ) ( x -- y z ) method-effect= ] unit-test
+[ t ] [ ( -- * ) ( -- ) method-effect= ] unit-test
+[ f ] [ ( -- * ) ( x -- y ) method-effect= ] unit-test
+[ t ] [ ( x -- * ) ( x -- y ) method-effect= ] unit-test
+[ t ] [ ( x -- * ) ( x -- y z ) method-effect= ] unit-test