Tomás

Results 4 issues of Tomás

It would be nice to have the ability to assert response bodies based on embedded JSONSchema definitions in the same Markdown document or linking to the file system file definition.

New API method: - [ ] `grappa.when` ```python if grappa.when(should.be.os('centos')): 'nginx' | should.be.running 80 | should.be.listening 'eth0' | should.have.interface if not grappa.when(should.be.os('ubuntu')): 'apache' | should.be.running 8080 | should.be.listening if '/opt'...

enhancement

Thunk like delegator strategy: ```python def reset_fn(delegator): delegator() # encapsulates logic paco.times(coro, 5, reset_fn=reset_fn) ```

In bravado `v9`, this [line](https://github.com/Yelp/bravado-core/blob/master/bravado_core/param.py#L120) is raising a `bravado_core.exception.SwaggerMappingError` in case that the request param type is not satisfied. This is totally fine in a common scenario, but in a...