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
get()
Replace the given function fixture(args) by call fixture::get(args).
fixture(args)
fixture::get(args)
Take care to remove mut in args definition (it will pass just the ownership) or , simpler, shut down the warning.
mut
When we'll implement teardown we should take get() result and discard teardown
The text was updated successfully, but these errors were encountered:
#5 replace original fixture call by fixture body to remove warning by…
16de3ca
… not necessary mut. We maintain both body till #34 is implemented.
8a0ff08
#34 update changelog
7473e4e
#34 Fixed link
5d7c675
No branches or pull requests
Replace the given function
fixture(args)
by callfixture::get(args)
.Take care to remove
mut
in args definition (it will pass just the ownership) or , simpler, shut down the warning.When we'll implement teardown we should take
get()
result and discard teardownThe text was updated successfully, but these errors were encountered: