# File lib/fake_web.rb, line 62
  def self.allow_net_connect?(uri = nil)
    if Registry.instance.passthrough_uri_map.any?
      raise ArgumentError, "You must supply a URI to test" if uri.nil?
      Registry.instance.passthrough_uri_matches?(uri)
    else
      @allow_all_connections
    end
  end