Jordon Phillips

Results 36 comments of Jordon Phillips

[placebo](https://github.com/garnaat/placebo), though it runs in a different way than the stubber does: it records and replays.

Off the top of my head I can't think of anything that this behavior change would break. I was initially unsure about using stderr as a prompting source, but when...

`resume_token` is currently only set once `MaxItems` has been reached: ``` python import boto3 ddb = boto3.client('dynamodb') # Setup an expected response stubber = Stubber(ddb) last_evaluated_key = {"data": {"S": "value"}}...

`None` could be semantically important, so if we allowed providing it then it could lead to breaking changes down the road. You can also use paginators. They're not super well...

> we'll need to filter out bad words This is remarkably harder than you'd think. I've yet to find a list that's able to filter out everything just in the...

Allowing labels to be empty can be problematic if the segment is at the end of a URI. S3 is the prime example of this because the URI for `ListBuckets`...

Yeah they would have to equate to empty strings.

Yeah, this is the S3 issue I mentioned before and is one of the primary motivating factors of why I don't think empty path segments should be allowed

If the operation can't be determined, you throw a serialization exception. It's pretty clear that this would be indeterminable, though I suppose your question could also be phrased as "How...

The fundamental issue here is a confusion about the intent of `params`. The current intent is that you should only make assertions on those parameters that are actually present, so...