12 lines
158 B
Haskell
12 lines
158 B
Haskell
|
module Tests (
|
||
|
tests
|
||
|
) where
|
||
|
|
||
|
import Distribution.TestSuite
|
||
|
import qualified XML.Card (test)
|
||
|
|
||
|
tests :: IO [Test]
|
||
|
tests = return [
|
||
|
XML.Card.test
|
||
|
]
|