Jon Rowe

Results 27 issues of Jon Rowe

This came up in rspec/rspec-expectations#1017 we need to duplicate args we capture for later replay onto expectations, in case they are mutated downstream. This seems like an "ok" way to...

When using nested method calls and blocks, stubbing a super class method will leak into the child class for the duration of the block. First reported on rspec/rspec-core#2563 (with reproduction...

This is @kaiwren's `a_block` argument matcher with fleshed out sad path specs, and a refactoring of the match logic to allow mixing with other arguments. Review please @kaiwren @ioquatix @benoittgt.

Demonstration of rspec/rspec-mocks#1098

Currently: - [ ] `features/expectation_framework_integration/configure_expectation_framework.feature:76` does not pass as expected.

This is a solution attempt for #536 On Ruby 3 we can (with effort) distinguish between a last positional hash and a keyword hash, because the mixed behaviour we can...

My approach to try to split args and use `**kwargs` for delegation is incorrect and needs to be phased out in 3.x and this module removed in 4.x. The problem...

From #354 an invalid encoding combination in a file can cause an error which stops RSpec from running and highlighting the correct cause: ``` Traceback (most recent call last): 28:...

Large nokogiri documents expand to even larger when pp'd, and this produces very complex diffs that take a long time to produce, I'm not sure if we have a solution...