summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net-http/http/proxy_class_spec.rb
blob: 00975aef4ecfaa06556b6fd5ee5679e6cd795106 (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