aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Test.hs
blob: c234b90f5c1eab70dfd2a6edab897f46232fa9c1 (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 = defaultMain tests