{-# LANGUAGE UnicodeSyntax #-} module Main where import Codec.GrayQC ( test ) import Test.Framework as TF ( defaultMain, Test ) tests ∷ [TF.Test] tests = [ Codec.GrayQC.test ] main ∷ IO () main = defaultMain tests