robber.py icon indicating copy to clipboard operation
robber.py copied to clipboard

BDD / TDD assertion library for Python

Results 4 robber.py issues
Sort by recently updated
recently updated
newest added

### Description Currently, chaining does not work per the README as the match returns a boolean instead of an expect. This fixes it to still work with multiple expects, while...

I really like this library but it is impractical for me to use it with unit tests if the traceback is hidden. If there is a lot of expects and...

The following code snippet demonstrates the issue(run on OSX): ``` python from robber import expect import json abc=json.loads('{"a": "abc"}') expect(abc['a']).to.equal('abc') ``` Run the above will generate the following exception message:...

I encouter a problem with the following code snippet(run in OSX): ``` python from robber import expect import json abc=json.loads('{"a": "a string"}') expect(abc['a']).to.be.a.string() ``` the above expect statement will generate...