2014-03-04 00:33:25 +01:00
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
2019-02-04 22:52:31 +01:00
|
|
|
{- |
|
|
|
|
Module : Tests.Shared
|
2022-01-01 20:02:31 +01:00
|
|
|
Copyright : © 2014-2022 Albert Krewinkel
|
2019-02-04 22:52:31 +01:00
|
|
|
License : GNU GPL, version 2 or above
|
|
|
|
|
|
|
|
Maintainer : Albert Krewinkel <albert@zeitkraut.de>
|
|
|
|
Stability : alpha
|
|
|
|
Portability : portable
|
|
|
|
|
|
|
|
Tests of the org reader.
|
|
|
|
-}
|
2014-03-04 00:33:25 +01:00
|
|
|
module Tests.Readers.Org (tests) where
|
|
|
|
|
2017-12-24 22:48:18 +01:00
|
|
|
import Test.Tasty (TestTree, testGroup)
|
|
|
|
import qualified Tests.Readers.Org.Block as Block
|
|
|
|
import qualified Tests.Readers.Org.Directive as Directive
|
|
|
|
import qualified Tests.Readers.Org.Inline as Inline
|
|
|
|
import qualified Tests.Readers.Org.Meta as Meta
|
2017-05-31 20:43:30 +02:00
|
|
|
|
2017-03-14 17:05:36 +01:00
|
|
|
tests :: [TestTree]
|
2014-03-04 00:33:25 +01:00
|
|
|
tests =
|
2017-12-24 22:48:18 +01:00
|
|
|
[ testGroup "Inlines" Inline.tests
|
|
|
|
, testGroup "Basic Blocks" Block.tests
|
|
|
|
, testGroup "Meta Information" Meta.tests
|
|
|
|
, testGroup "Directives" Directive.tests
|
2014-03-04 00:33:25 +01:00
|
|
|
]
|