2020-12-13 20:09:23 +01:00
|
|
|
module XML.Card (
|
|
|
|
test
|
|
|
|
) where
|
|
|
|
|
2023-08-20 22:24:58 +02:00
|
|
|
import Test.HUnit (Test)
|
|
|
|
import Utils (testGroup)
|
2020-12-13 20:09:23 +01:00
|
|
|
import qualified XML.Card.Component as Component (test)
|
|
|
|
import qualified XML.Card.Output as Output (test)
|
|
|
|
|
|
|
|
test :: Test
|
2023-08-20 22:24:58 +02:00
|
|
|
test = testGroup "Cards" [Component.test, Output.test]
|