2020-06-08 22:45:16 +02:00
|
|
|
module XML.Card (
|
|
|
|
test
|
|
|
|
) where
|
|
|
|
|
|
|
|
import Distribution.TestSuite
|
2020-06-09 17:45:54 +02:00
|
|
|
import Utils (tag)
|
|
|
|
import qualified XML.Card.Component as Component (test)
|
|
|
|
import qualified XML.Card.Output as Output (test)
|
2020-06-08 22:45:16 +02:00
|
|
|
|
|
|
|
test :: Test
|
2020-06-09 17:45:54 +02:00
|
|
|
test = tag "card" $ testGroup "Cards" [Component.test, Output.test]
|