]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/colors/hex/hex-tests.factor
factor: second stab at [ ] [ ] unit-test -> { } [ ] unit-test
[factor.git] / basis / colors / hex / hex-tests.factor
index 0ab1fd52169bbe85053cc9297d3fe7846a8f38c7..1dcd53c4346a79facade8315dcbc211d0fc7194c 100644 (file)
@@ -5,8 +5,8 @@ USING: colors colors.hex tools.test ;
 
 IN: colors.hex.test
 
-[ HEXCOLOR: 000000 ] [ 0.0 0.0 0.0 1.0 <rgba> ] unit-test
-[ HEXCOLOR: FFFFFF ] [ 1.0 1.0 1.0 1.0 <rgba> ] unit-test
-[ HEXCOLOR: abcdef ] [ "abcdef" hex>rgba ] unit-test
-[ HEXCOLOR: abcdef ] [ "ABCDEF" hex>rgba ] unit-test
-[ "ABCDEF" ] [ HEXCOLOR: abcdef rgba>hex ] unit-test
+{ HEXCOLOR: 000000 } [ 0.0 0.0 0.0 1.0 <rgba> ] unit-test
+{ HEXCOLOR: FFFFFF } [ 1.0 1.0 1.0 1.0 <rgba> ] unit-test
+{ HEXCOLOR: abcdef } [ "abcdef" hex>rgba ] unit-test
+{ HEXCOLOR: abcdef } [ "ABCDEF" hex>rgba ] unit-test
+{ "ABCDEF" } [ HEXCOLOR: abcdef rgba>hex ] unit-test