aboutsummaryrefslogtreecommitdiffstats
path: root/test/Property.hs
diff options
context:
space:
mode:
Diffstat (limited to 'test/Property.hs')
-rw-r--r--test/Property.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Property.hs b/test/Property.hs
index ddbef0d..2d5dcc1 100644
--- a/test/Property.hs
+++ b/test/Property.hs
@@ -13,6 +13,7 @@ where
import Data.Either (either, isRight)
import qualified Data.Graph.Inductive as G
import Data.Text (Text)
+import Distance (distanceTests)
import Hedgehog ((===), Gen, Property)
import qualified Hedgehog as Hog
import qualified Hedgehog.Gen as Hog
@@ -47,5 +48,6 @@ propertyTests =
testGroup
"Property Tests"
[ testProperty "acyclic graph generation check" acyclicGraph,
- parserTests
+ parserTests,
+ distanceTests
]