File: QC.hs

package info (click to toggle)
haskell-attoparsec 0.14.4-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 880 kB
  • sloc: haskell: 4,749; ansic: 170; makefile: 22
file content (19 lines) | stat: -rw-r--r-- 555 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{-# OPTIONS_GHC -fno-warn-missing-signatures #-}
module Main (main) where

import qualified QC.Buffer as Buffer
import qualified QC.ByteString as ByteString
import qualified QC.Combinator as Combinator
import qualified QC.Simple as Simple
import qualified QC.Text as Text
import Test.Tasty (defaultMain, testGroup)

main = defaultMain tests

tests = testGroup "tests" [
    testGroup "bs" ByteString.tests
  , testGroup "buf" Buffer.tests
  , testGroup "combinator" Combinator.tests
  , testGroup "simple" Simple.tests
  , testGroup "text" Text.tests
  ]