File: TestSuite.hs

package info (click to toggle)
haskell-numbers 3000.2.0.2-6
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 136 kB
  • sloc: haskell: 948; makefile: 3
file content (15 lines) | stat: -rw-r--r-- 230 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Main
where

import Test.Framework (
  Test,
  defaultMain,
  )

import Test.Data.Number.BigFloat (bigfloat_properties)

main :: IO ()
main = defaultMain tests

tests :: [Test.Framework.Test]
tests = [ bigfloat_properties ]