packages feed

tomland-1.3.3.3: test/Test/Toml/Type.hs

module Test.Toml.Type
    ( typeSpec
    ) where

import Test.Hspec (Spec, describe, parallel)

import Test.Toml.Type.Key (keySpec)
import Test.Toml.Type.PrefixTree (prefixTreeSpec)
import Test.Toml.Type.Printer (printerSpec)
import Test.Toml.Type.TOML (tomlSpec)


typeSpec :: Spec
typeSpec = parallel $ describe "Toml.Type tests" $ do
    keySpec
    prefixTreeSpec
    printerSpec
    tomlSpec