No posts available in this category at this time
No talks available in this category at this time
Pytest equivalent of
unittest.TestCase.assertTrue()
is
assert some_condition
.
For example
self.assertTrue(form.is_valid())
using pytest would be
assert form.is_valid()
.
✨Magic ✨