dhall-1.4.0: tests/Tests.hs
module Main where
import Normalization (normalizationTests)
import Examples (exampleTests)
import Tutorial (tutorialTests)
import Test.Tasty
allTests :: TestTree
allTests =
testGroup "Dhall Tests"
[ normalizationTests
, exampleTests
, tutorialTests
]
main :: IO ()
main = defaultMain allTests