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