org-parser-0.1.0.0: test/test-org-parser.hs
module Main
( module Main,
module Tests.Helpers,
module Org.Parser.Document,
module Org.Parser.Elements,
module Org.Parser.Objects,
)
where
import Org.Parser.Document
import Org.Parser.Elements
import Org.Parser.Objects
import Test.Tasty
import Tests.Document
import Tests.Elements
import Tests.Helpers
import Tests.Objects
tests :: TestTree
tests =
testGroup
"Org parser tests"
[ testObjects,
testElements,
testDocument
]
main :: IO ()
main = do
defaultMain tests