Iván Velencoso

Results 17 issues of Iván Velencoso

``` (1,2,3) | should.contain(2) ```

bug

The following scenario fails: ``` matcher = should.be_a_string 'foo' | matcher 'foo' | matcher # RPN error ``` We could clone before resolving the matcher so that we can use...

bug

Port some third party matchers, specially ones for regular expressions - https://github.com/derari/cthul/wiki/Matchers - https://github.com/daviddenton/hamsandwich

enhancement

Custom matcher to check if a value is within limits ``` a | should.be_within(10, 20) # 10

enhancement

I don't know ruby (is in my todo list) so I might be completely wrong about this, I've seen however what I think could be a very easy way to...

Hi, I think there is a relatively simple optimization that could boost the performance with a very little penalty in memory usage. The current _caching_ strategy seems to be to...

Since brace expansion usually happens before other expansions (i.e. glob), the current behaviour of handling all the escaped characters breaks later stages. For instance: >>> braceexpand(r'{foo,bar}-\?') ['foo-?', 'bar-?'] # lost...