aboutsummaryrefslogtreecommitdiffstats
path: root/test/Test.hs
blob: f2609bab2432d1fa5de938ed45ea1a1350ecb344 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Main where

import           Property
import           Test.Tasty
import           Unit

tests :: TestTree
tests = testGroup "Tests" [unitTests, propertyTests]

main :: IO ()
main = defaultMain tests