Updated RubySpec source to 55122684.
[rbx.git] / spec / frozen / 1.8 / library / net / http / open_timeout_spec.rb
blob6031aba3aff2e910becc03c4c10680c88aa99f77
1 require File.dirname(__FILE__) + '/../../../spec_helper'
2 require 'net/http'
4 describe "Net::HTTP#open_timeout" do
5   it "returns the seconds to wait till the connection is open" do
6     net = Net::HTTP.new("localhost")
7     net.open_timeout.should be_nil
8     net.open_timeout = 10
9     net.open_timeout.should eql(10)
10   end
11 end
13 describe "Net::HTTP#open_timeout=" do
14   it "sets the seconds to wait till the connection is open" do
15     net = Net::HTTP.new("localhost")
16     net.open_timeout = 10
17     net.open_timeout.should eql(10)
18   end
19   
20   it "returns the newly set value" do
21     net = Net::HTTP.new("localhost")
22     (net.open_timeout = 10).should eql(10)
23   end
24 end