elm/tests/Main.hs
Max New 2da9009512 Setup QuickCheck and add Literal Parse/Print test
Currently fails the prop tests: https://github.com/evancz/Elm/issues/420

Also ignore emacs backup files.
2013-12-29 16:50:41 -06:00

11 lines
193 B
Haskell

module Main where
import Test.Framework
import Tests.Compiler
import Tests.Property
main :: IO ()
main = defaultMain [ compilerTests
, propertyTests
]