hnix/tests/Main.hs
Rhys 0d456691b5 Escape ${ but not plain $ in indented strings
Includes some very basic regression tests, but no change for
non-indented strings.
2017-05-31 21:24:43 +10:00

19 lines
327 B
Haskell

module Main where
import Test.Tasty
import qualified ParserTests
import qualified EvalTests
import qualified ShorthandTests
import qualified PrettyTests
import Prelude (IO, ($))
main :: IO ()
main = defaultMain $ testGroup "hnix"
[ ParserTests.tests
, EvalTests.tests
, ShorthandTests.tests
, PrettyTests.tests
]