summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net/http/http/proxy_class_spec.rb
blob: 2d32a39f013d157a60bb81975bcbbb716d5bd29b (plain)
1
2
3
4
5
6
7
8
9
require_relative '../../../../spec_helper'
require 'net/http'

describe "Net::HTTP.proxy_class?" do
  it "returns true if self is a class created with Net::HTTP.Proxy" do
    Net::HTTP.proxy_class?.should be_false
    Net::HTTP.Proxy("localhost").proxy_class?.should be_true
  end
end