]> gitweb.factorcode.org Git - factor.git/blob - extra/colors/lab/lab-tests.factor
c1af98930ef4ef183b8a2222a15bfdd3e26511e2
[factor.git] / extra / colors / lab / lab-tests.factor
1 ! Copyright (C) 2014 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.lab
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 >laba >rgba
14                 [ >rgba-components 4array ] bi@
15                 [ 0.00001 ~ ] 2all?
16             ] all?
17         ] all?
18     ] all?
19 ] unit-test