prizm-0.1.0.2: tests/QC.hs
{-# OPTIONS_GHC -fno-warn-missing-signatures #-}
module Main (main) where
import qualified QC.SRGB as SRGB
import qualified QC.CIE as CIE
import Test.Framework (defaultMain, testGroup)
main = defaultMain tests
tests = [
testGroup "srgb" SRGB.tests
, testGroup "cie" CIE.tests
]