File: Spec.hs

package info (click to toggle)
haskell-random 1.2.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 296 kB
  • sloc: haskell: 2,696; makefile: 3
file content (23 lines) | stat: -rw-r--r-- 376 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{-# LANGUAGE CPP #-}
module Main (main) where
#if __GLASGOW_HASKELL__ >= 800

import qualified Spec.Inspection as Inspection
import Test.Tasty

main :: IO ()
main =
  defaultMain $
    testGroup
      "InspectionSpec"
      [ Inspection.inspectionTests
      ]

#else

main :: IO ()
main = putStrLn "\nInspection testing is not supported for pre ghc-8.0 versions\n"

#endif