File: Main.hs

package info (click to toggle)
haskell-hashable 1.5.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 460 kB
  • sloc: ansic: 3,274; haskell: 1,295; makefile: 7
file content (14 lines) | stat: -rw-r--r-- 388 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- | Tests for the 'Data.Hashable' module.  We test functions by
-- comparing the C and Haskell implementations.

module Main (main) where

import Properties (properties)
import Regress (regressions)
import Test.Tasty (defaultMain, testGroup)

main :: IO ()
main = defaultMain $ testGroup "hashable"
    [ testGroup "properties" properties
    , testGroup "regressions" regressions
    ]