~ubuntu-branches/debian/experimental/haskell-binary-parsers/experimental

« back to all changes in this revision

Viewing changes to tests/Main.hs

  • Committer: Package Import Robot
  • Author(s): Clint Adams
  • Date: 2016-10-09 02:48:57 UTC
  • Revision ID: package-import@ubuntu.com-20161009024857-371qoot9dk9der2z
Tags: upstream-0.2.3.0
ImportĀ upstreamĀ versionĀ 0.2.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{-# OPTIONS_GHC -fno-warn-missing-signatures #-}
 
2
module Main (main) where
 
3
 
 
4
import qualified QC.ByteString as ByteString
 
5
import qualified QC.Combinator as Combinator
 
6
import Test.Tasty (defaultMain, testGroup)
 
7
import qualified JSON
 
8
 
 
9
main = do
 
10
    jsonTests <- JSON.tests
 
11
    defaultMain $ testGroup "tests" [
 
12
        testGroup "bs" ByteString.tests
 
13
      , testGroup "combinator" Combinator.tests
 
14
      , testGroup "JSON" jsonTests
 
15
      ]