12 lines
275 B
Haskell
12 lines
275 B
Haskell
|
module XML.Card (
|
||
|
test
|
||
|
) where
|
||
|
|
||
|
import Distribution.TestSuite
|
||
|
import Utils (tag)
|
||
|
import qualified XML.Card.Component as Component (test)
|
||
|
import qualified XML.Card.Output as Output (test)
|
||
|
|
||
|
test :: Test
|
||
|
test = tag "card" $ testGroup "Cards" [Component.test, Output.test]
|