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
assertEqual
Normally, you don't really care if a value is a float vs. an integer
so m.assertEqual(70.0, 70) should not fail a test
m.assertEqual(70.0, 70)
The text was updated successfully, but these errors were encountered:
@chrisdp you've done a lot of work on the tests lately. Thoughts on this? (Or an alternative assertion function)
Sorry, something went wrong.
I personally like the idea but worry about breaking existing tests. I was thinking we would tackle some of this with a new set of expects or asserts.
No branches or pull requests
Normally, you don't really care if a value is a float vs. an integer
so
m.assertEqual(70.0, 70)
should not fail a testThe text was updated successfully, but these errors were encountered: