11 lines
263 B
Haskell
11 lines
263 B
Haskell
module XML.Card (
|
|
test
|
|
) where
|
|
|
|
import Test.HUnit (Test)
|
|
import Utils (testGroup)
|
|
import qualified XML.Card.Component as Component (test)
|
|
import qualified XML.Card.Output as Output (test)
|
|
|
|
test :: Test
|
|
test = testGroup "Cards" [Component.test, Output.test]
|