File: Main.hs

package info (click to toggle)
haskell-bytestring-lexing 0.5.0.15-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 156 kB
  • sloc: haskell: 1,036; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 976 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{-# OPTIONS_GHC -Wall -fwarn-tabs #-}
----------------------------------------------------------------
--                                                    2021.10.17
-- |
-- Module      :  test/Main
-- Copyright   :  Copyright (c) 2015--2021 wren gayle romano
-- License     :  BSD2
-- Maintainer  :  wren@cpan.org
-- Stability   :  benchmark
-- Portability :  Haskell98
--
-- Run all the basic correctness tests.
----------------------------------------------------------------
module Main (main) where
import qualified Test.Tasty as Tasty
import qualified Integral
import qualified Fractional

----------------------------------------------------------------
----------------------------------------------------------------

main :: IO ()
main = Tasty.defaultMain . Tasty.testGroup "Main" $
    [ Integral.tests
    , Fractional.tests
    ]

----------------------------------------------------------------
----------------------------------------------------------- fin.