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
Here is an example of output when a test fails:
... Shrinking .(1 time(s)) [{set,{var,1},{call,kv_store,put,[c,'3']}},{set,{var,2},{call,kv_store,erase,[c]}},{set,{var,3},{call,kv_store,put,[c,'3']}}] History: [{[],''},{[{c,'3'}],'3'},{[],'3'}] State: [] Res: {postcondition,false}
The call sequence could be more readably printed by putting it through Erlang's rp/1 function first:
[{set,{var,1},{call,kv_store,put,[c,'3']}}, {set,{var,2},{call,kv_store,erase,[c]}}, {set,{var,3},{call,kv_store,put,[c,'3']}}]
The text was updated successfully, but these errors were encountered:
Fix issue proper-testing#132: Pretty print call sequences.
136a7b4
proper-testing#132
No branches or pull requests
Here is an example of output when a test fails:
...
Shrinking .(1 time(s))
[{set,{var,1},{call,kv_store,put,[c,'3']}},{set,{var,2},{call,kv_store,erase,[c]}},{set,{var,3},{call,kv_store,put,[c,'3']}}]
History: [{[],''},{[{c,'3'}],'3'},{[],'3'}]
State: []
Res: {postcondition,false}
The call sequence could be more readably printed by putting it through Erlang's rp/1 function first:
[{set,{var,1},{call,kv_store,put,[c,'3']}},
{set,{var,2},{call,kv_store,erase,[c]}},
{set,{var,3},{call,kv_store,put,[c,'3']}}]
The text was updated successfully, but these errors were encountered: