File: Test.hs

package info (click to toggle)
haskell-replace-megaparsec 1.5.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 120 kB
  • sloc: haskell: 554; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 225 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{-# LANGUAGE BlockArguments #-}

module Main ( main ) where

import Test.Hspec
import TestString
import TestByteString
import TestText

main :: IO ()
main = hspec do
  TestString.tests
  TestByteString.tests
  TestText.tests