-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve Test Suite #65
Comments
Is it possible to inspect all types in scope for their typeclass instances and generate the test cases for that type by matching its instances against those we have |
We could probably do what haddock does for gathering the typeclasses or something similar and just using it as inspiration. I dont remember what the datatype for typeclasses is. I don't think this will be that hard. |
We could run into issues related to #74. |
I don’t know if you can get all types in scope with template Haskell. Maybe it can do all types exported by a module. |
In a discussion about the broken derived
Ord
instances in GHC 8.6.1:I'm going to do this.
The text was updated successfully, but these errors were encountered: