File: spec_main.hs

package info (click to toggle)
haskell-twitter-types 0.11.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 340 kB
  • sloc: haskell: 1,784; makefile: 5
file content (17 lines) | stat: -rw-r--r-- 366 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Main where

import qualified PropFromToJSONTest
import qualified StatusTest
import Test.Tasty
import qualified TypesTest

tests :: TestTree
tests =
    testGroup
        "Tests"
        [ testGroup "Unit Test" [TypesTest.tests, StatusTest.tests]
        , testGroup "Property Test" [PropFromToJSONTest.tests]
        ]

main :: IO ()
main = defaultMain tests