We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When generators are introduced inside containers like lists and tuples they work as expected:
1> proper_gen:pick({key, proper_types:nat()}). {ok,{key,7}} 2> proper_gen:pick([proper_types:nat()]). {ok,[0]}
But when a generator is introduced in a map it does not produce any value:
3> proper_gen:pick(#{key => proper_types:nat()}). {ok,#{key => {'$type',[{generator,#Fun<proper_types.79.60513951>}, {kind,wrapper}]}}}
I suppose this has some relation with issues #111, #118 and #238.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When generators are introduced inside containers like lists and tuples they work as expected:
But when a generator is introduced in a map it does not produce any value:
I suppose this has some relation with issues #111, #118 and #238.
The text was updated successfully, but these errors were encountered: