aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/net/http/http/socket_type_spec.rb
blob: 4ec9b68571d7f4b60611a1a021e7191faf0b8911 (plain)
1
2
3
4
5
6
7
8
require File.expand_path('../../../../../spec_helper', __FILE__)
require 'net/http'

describe "Net::HTTP.socket_type" do
  it "returns BufferedIO" do
    Net::HTTP.socket_type.should == Net::BufferedIO
  end
end