]> Git — Sourcephile - haskell/symantic.git/blob - TFHOE/Expr/Test.hs
init
[haskell/symantic.git] / TFHOE / Expr / Test.hs
1 module Expr.Test where
2
3 import Test.Tasty
4
5 import qualified Expr.Fun.Test as Fun
6 import qualified Expr.Bool.Test as Bool
7
8 tests :: TestTree
9 tests =
10 testGroup "Expr"
11 [ Fun.tests
12 , Bool.tests
13 ]