]> gitweb.factorcode.org Git - factor.git/blob - extra/colors/cmyk/cmyk-tests.factor
071bb83a6423679790fc842028966477714f9c0e
[factor.git] / extra / colors / cmyk / cmyk-tests.factor
1 ! Copyright (C) 2013 John Benediktsson
2 ! See http://factorcode.org/license.txt for BSD license
3
4 USING: arrays colors kernel locals math.functions math.ranges
5 sequences tools.test ;
6
7 IN: colors.cmyk
8
9 { t } [
10     0.0 1.0 0.1 <range> [| r |
11         0.0 1.0 0.1 <range> [| g |
12             0.0 1.0 0.1 <range> [| b |
13                 r g b 1.0 <rgba> dup >cmyka >rgba
14                 [ >rgba-components 4array ] bi@
15                 [ 0.00000001 ~ ] 2all?
16             ] all?
17         ] all?
18     ] all?
19 ] unit-test