File: Main.hs

package info (click to toggle)
haskell-nothunks 0.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 132 kB
  • sloc: haskell: 945; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 207 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
module Main (main) where

import Test.Tasty

import qualified Test.NoThunks.Class

tests :: TestTree
tests = testGroup "Tests" [
      Test.NoThunks.Class.tests
    ]

main :: IO ()
main = defaultMain tests