htoml-0.2.0.0: test/Test.hs
module Main where
import Prelude hiding (readFile) -- needed for GHCi, see `.ghci`
import Test.Tasty (defaultMain, testGroup)
import qualified BurntSushi
import Text.Toml.Parser.Spec
main :: IO ()
main = do
parserSpec <- tomlParserSpec
bsTests <- BurntSushi.tests
defaultMain $ testGroup "" $
[ parserSpec
, bsTests
--, quickCheckSuite
-- A QuickCheck suite for a parser is possible. The internet knows.
]