File: main.hs

package info (click to toggle)
haskell-vector 0.13.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 996 kB
  • sloc: haskell: 11,004; ansic: 6; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 329 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{-# LANGUAGE CPP #-}
module Main (main) where

import qualified Inspect
#if MIN_VERSION_base(4,12,0)
import qualified Inspect.DerivingVia
#endif
import Test.Tasty (defaultMain,testGroup)

main :: IO ()
main = defaultMain $ testGroup "tests"
  [ Inspect.tests
#if MIN_VERSION_base(4,12,0)
  , Inspect.DerivingVia.tests
#endif
  ]