Iván Velencoso
Iván Velencoso
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...
Port some third party matchers, specially ones for regular expressions - https://github.com/derari/cthul/wiki/Matchers - https://github.com/daviddenton/hamsandwich
Custom matcher to check if a value is within limits ``` a | should.be_within(10, 20) # 10
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...