Now I have to do this: ``` WebMock.enable_net_connect! begin # go to google.com ensure WebMock.disable_net_connect! end ``` Would be more convenient to do this: ``` WebMock.enable_net_connect! do # go to google.com end ```
Now I have to do this:
Would be more convenient to do this: