attoparsec-0.10.3.0: tests/QC.hs
{-# OPTIONS_GHC -fno-warn-missing-signatures #-}
module Main (main) where
import qualified QC.ByteString as ByteString
import qualified QC.Text as Text
import Test.Framework (defaultMain, testGroup)
main = defaultMain tests
tests = [
testGroup "bs" ByteString.tests
, testGroup "text" Text.tests
]