2020-06-08 22:45:16 +02:00
|
|
|
module Tests (
|
|
|
|
tests
|
|
|
|
) where
|
|
|
|
|
|
|
|
import Distribution.TestSuite
|
2020-10-23 15:39:49 +02:00
|
|
|
import qualified Structure (test)
|
2020-06-09 15:21:29 +02:00
|
|
|
import Utils (tag)
|
2020-06-08 22:45:16 +02:00
|
|
|
import qualified XML.Card (test)
|
|
|
|
|
|
|
|
tests :: IO [Test]
|
2020-06-09 15:21:29 +02:00
|
|
|
tests = return $ tag "xml" <$> [
|
2020-10-23 15:39:49 +02:00
|
|
|
XML.Card.test
|
|
|
|
, Structure.test
|
2020-06-08 22:45:16 +02:00
|
|
|
]
|