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
Currently if you do something like
assert_difference "Exp1", "Exp2" do foo end
Exp2 is ignored because it's taken as the error message. Instead one should write
assert_difference ["Exp1", "Exp2"] do foo end
but there's no error pushing one to write it the correct way. Fix the API so this thing cannot happen.
The text was updated successfully, but these errors were encountered:
What about having an assert_increase for the "Exp1", "Exp2" call and otherwise, require an array or a hash?
Sorry, something went wrong.
pupeno
No branches or pull requests
Currently if you do something like
Exp2 is ignored because it's taken as the error message. Instead one should write
but there's no error pushing one to write it the correct way. Fix the API so this thing cannot happen.
The text was updated successfully, but these errors were encountered: