Bartosz Blimke

Results 218 comments of Bartosz Blimke

@mvz thank you for the PR. I'm not sure about the new logic though. It has a different behaviour for symbols than strings based on assumption "commonly used with underscores"...

support for passing a stub to assert_requested has been added after assert_requested was originally created to make it easier and avoid duplication, but the assertion is made on request registry...

stubs do not track their history of requests.

have you verified that these regexes match the url? I find https://rubular.com/ useful for things like that. E.g. I believe the ? should be escaped or otherwise it means optional...

@utkarsh2102 how can it be reproducted? what ruby version that is?

WebMock by default doesn't support multiple params of the same type. Please check this comment: https://github.com/bblimke/webmock/issues/490#issuecomment-115179961

@thoraxe yes, it's intended that `require webmock/rspec` results with WebMock being loaded everywhere. If you take a look at `webmock/rspec` source, it simply loads WebMock, enables it (globally) and adds...

@cecilian Is the http request made from the code invoked inside the test? If yes, then perhaps there is some code that again disables the connections after the setup and...

Thank you for the pull request. Any reason why the test has been added to test and not to a spec? Tests are mainly to ensure compatibility with minitest and...

I wonder if the problem could be isolated to e.g. a specific single byte that causes the problem, as I understand not every binary file causes the issue? Perhaps a...