aboutsummaryrefslogtreecommitdiffstats
path: root/test/Property.hs
diff options
context:
space:
mode:
Diffstat (limited to 'test/Property.hs')
-rw-r--r--test/Property.hs12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/Property.hs b/test/Property.hs
index a57f92c..7e1911e 100644
--- a/test/Property.hs
+++ b/test/Property.hs
@@ -43,21 +43,9 @@ acyclicGraph = Hog.property $ do
. getCircuit
$ g
-propertyResultInterrupted :: Property
-propertyResultInterrupted = do
- mapCompose genResult
- (Hog.int (Hog.linear 0 100))
- (Hog.int (Hog.linear 0 100))
- (Hog.int (Hog.linear 0 100))
- where
- genResult :: Gen a -> Gen (Result Text a)
- genResult a = Hog.choice
- [Pass <$> a, Fail <$> Hog.text (Hog.linear 1 100) Hog.unicode]
-
propertyTests :: TestTree
propertyTests = testGroup
"Property Tests"
[ testProperty "acyclic graph generation check" acyclicGraph
- , testProperty "fmap for Result" propertyResultInterrupted
, parserTests
]