2020-12-13 20:09:23 +01:00
|
|
|
module Tests (
|
|
|
|
tests
|
|
|
|
) where
|
|
|
|
|
|
|
|
import Distribution.TestSuite
|
|
|
|
import qualified Structure (test)
|
|
|
|
import Utils (tag)
|
|
|
|
import qualified XML.Card (test)
|
2021-04-05 21:45:18 +02:00
|
|
|
import qualified XML.Favicon (test)
|
2020-12-13 20:09:23 +01:00
|
|
|
|
|
|
|
tests :: IO [Test]
|
|
|
|
tests = return $ tag "xml" <$> [
|
|
|
|
XML.Card.test
|
2021-04-05 21:45:18 +02:00
|
|
|
, XML.Favicon.test
|
2020-12-13 20:09:23 +01:00
|
|
|
, Structure.test
|
|
|
|
]
|