module WebMock

@private

Public Class Methods

net_connect_allowed?(*args)
net_connect_allowed_with_vcr?(*args) click to toggle source

ensure HTTP requests are always allowed; VCR takes care of disallowing them at the appropriate times in its hook

# File lib/vcr/library_hooks/webmock.rb, line 156
def net_connect_allowed_with_vcr?(*args)
  VCR.turned_on? ? true : net_connect_allowed_without_vcr?(*args)
end
Also aliased as: net_connect_allowed?
net_connect_allowed_without_vcr?(*args)