pipes-key-value-csv-0.0.0.0: test/test-kvc.hs
module Main where
import qualified Test.Csv as Csv
import qualified Test.KeyValue as KeyValue
import System.Exit
main :: IO ()
main = do
tests <- sequence
[ Csv.test
, KeyValue.test
]
if all id tests
then exitSuccess
else exitFailure