Skip to content

Commit 6b1aaf9

Browse files
committed
Run the plane tests.
1 parent b421013 commit 6b1aaf9

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

test/Geometry/Plane/Test.hs

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
1+
{-# LANGUAGE TemplateHaskell #-}
12
module Geometry.Plane.Test
2-
() where
3+
( tests
4+
) where
5+
6+
import Hedgehog
7+
8+
tests :: IO Bool
9+
tests = checkParallel $$(discover)

test/Test.hs

+2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ module Main
33
) where
44

55
import qualified Data.IntervalSet.Test as IntervalSet
6+
import qualified Geometry.Plane.Test as Plane
67
import qualified Geometry.Transform.Test as Transform
78
import Hedgehog.Main
89

910
main :: IO ()
1011
main = defaultMain
1112
[ IntervalSet.tests
13+
, Plane.tests
1214
, Transform.tests
1315
]

0 commit comments

Comments
 (0)