about summary refs log tree commit diff
path: root/test/EntryPoint.hs
blob: 68931cd0204bddb124d8418095e3c453174afd71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module Main where

import Test.Tasty

-- library tests
import Test.Gophermap

-- server executable tests
import Test.FileTypeDetection
import Test.Integration

main :: IO ()
main = defaultMain tests

tests :: TestTree
tests = testGroup "tests"
  [ gophermapTests
  , fileTypeDetectionTests
  , integrationTests
  ]