Jay Bazuzi
Jay Bazuzi
https://bitly.com/CodeByRefactoringModulesPdf+ It redirects to http://aleif.date/?6414
It sounds like this is always a good idea. I think best practices go somewhere else. The mobbing pattern languages is things that are not universally recommended. They are useful...
This is a good, useful idea but I'm not sure it belongs in the pattern language. I have noticed that different mobs behave different ways, adapting to the local context....
Maybe this should be a wiki instead of Git?
Cool. I have enabled Pages. https://jay.bazuzi.com/Mobbing-Pattern-Language/ so we can explore that further.
The "Arrange" step is about the system under test - configuring the system to be in a state where the "Action" makes sense. But "MonitorEvents()" is not part of the...
Perhaps: ``` foo.Invoking(f => f.Bar()).ShouldRaise... ```
I am also using an API where I must (1) send an auth request, and (2) use that auth to make a request. Here's how I configured VCR: ``` def...
Hey, it like you've put the `vcr_use_cassette` decorator in your production code. Move it to your test code: ``` @use_cassette() def a_test(): result = function_calling_api() assert(result...) ```
In this code, shouldn't we be setting `response.body`? https://github.com/bazelbuild/vscode-bazel/blob/master/src/debug-adapter/client.ts#L269 Compare to: https://github.com/microsoft/vscode-mock-debug/blob/master/src/mockDebug.ts#L175 Or am I missing something?