hnix/tests/Main.hs

11 lines
146 B
Haskell
Raw Normal View History

2014-08-03 14:17:43 +02:00
module Main where
import Test.Tasty
import qualified ParserTests
main :: IO ()
main = defaultMain $ testGroup "hnix"
[ ParserTests.tests
]