]> gitweb.factorcode.org Git - factor.git/blob - basis/colors/hex/hex-tests.factor
0ab1fd52169bbe85053cc9297d3fe7846a8f38c7
[factor.git] / basis / colors / hex / hex-tests.factor
1 ! Copyright (C) 2010 John Benediktsson
2 ! See http://factorcode.org/license.txt for BSD license
3
4 USING: colors colors.hex tools.test ;
5
6 IN: colors.hex.test
7
8 [ HEXCOLOR: 000000 ] [ 0.0 0.0 0.0 1.0 <rgba> ] unit-test
9 [ HEXCOLOR: FFFFFF ] [ 1.0 1.0 1.0 1.0 <rgba> ] unit-test
10 [ HEXCOLOR: abcdef ] [ "abcdef" hex>rgba ] unit-test
11 [ HEXCOLOR: abcdef ] [ "ABCDEF" hex>rgba ] unit-test
12 [ "ABCDEF" ] [ HEXCOLOR: abcdef rgba>hex ] unit-test