-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a spec that all generated values typechecks against their seed ty…
…pe via hasTyp
- Loading branch information
Showing
5 changed files
with
38 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
module Language.FineTypes.ValueSpec where | ||
|
||
import Language.FineTypes.Value (hasTyp) | ||
import Language.FineTypes.Value.Gen | ||
import Test.Hspec | ||
import Test.Hspec.QuickCheck (prop) | ||
import Test.QuickCheck | ||
import Prelude | ||
|
||
spec :: Spec | ||
spec = do | ||
describe "Generated values" $ do | ||
prop "typecheck" | ||
$ forAll (genValue 6) | ||
$ \(typ, evalue) -> | ||
case evalue of | ||
Left _ -> error "should not happen" | ||
Right value -> value `hasTyp` typ |