15 lines
250 B
Haskell
15 lines
250 B
Haskell
|
module Tests (
|
||
|
tests
|
||
|
) where
|
||
|
|
||
|
import Distribution.TestSuite
|
||
|
import qualified Structure (test)
|
||
|
import Utils (tag)
|
||
|
import qualified XML.Card (test)
|
||
|
|
||
|
tests :: IO [Test]
|
||
|
tests = return $ tag "xml" <$> [
|
||
|
XML.Card.test
|
||
|
, Structure.test
|
||
|
]
|