module Expr.Test where import Test.Tasty import qualified Expr.Lambda.Test as Lambda import qualified Expr.Bool.Test as Bool import qualified Expr.Int.Test as Int import qualified Expr.Maybe.Test as Maybe import qualified Expr.If.Test as If tests :: TestTree tests = testGroup "Expr" [ Lambda.tests , Bool.tests , Int.tests , Maybe.tests , If.tests ]