File: Main.hs

package info (click to toggle)
haskell-uri-bytestring 0.3.3.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 172 kB
  • sloc: haskell: 1,498; makefile: 6
file content (19 lines) | stat: -rw-r--r-- 547 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module Main (main) where

-------------------------------------------------------------------------------
import           Test.Tasty
-------------------------------------------------------------------------------
import qualified URI.ByteStringTests
import qualified URI.ByteStringQQTests
-------------------------------------------------------------------------------


main :: IO ()
main = defaultMain testSuite

testSuite :: TestTree
testSuite = testGroup "uri-bytestring"
  [
    URI.ByteStringTests.tests
  , URI.ByteStringQQTests.tests
  ]