delayed-assert icon indicating copy to clipboard operation
delayed-assert copied to clipboard

Delayed aka. Soft assert for python

Results 9 delayed-assert issues
Sort by recently updated
recently updated
newest added

As the title says. Our tests are written with Behave and our step names do not include the word "test". Is this requirement necessary?

The current way of colourizing the output was created just for terminal output. This doesn't play well when the tests are executed on CI and IDE which doesn't respect the...

enhancement
help wanted

Hi, is there a way to instantiate a delayed assert, or in some other way have multiple assertions accumulating expectations at the same time? What I was imagining was the...

enhancement
help wanted

* The method name from which expect being called not necessiarly be test*; Not all frameworks warrant the method names starts with test*

![Screenshot from 2020-08-04 10-29-12](https://user-images.githubusercontent.com/32413277/89254695-6095ca80-d63d-11ea-8c74-4dea0686f503.png)

bug

Assume the following code, ``` def verify_1(self): expect(not False, "False 1") def verify_2(self): expect( not False, "False 2") def test_delete(self): self.verify_1() some code self.verify_2() some code assert_expectations() ``` It is...