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