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

import           Property
import           Test.Tasty
import           Unit

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

main = defaultMain tests