Updated RubySpec source to 55122684.
[rbx.git] / spec / frozen / 1.8 / library / net / http / lock_spec.rb
blobdcd7197e2983f94648971db7bccc05599e45650f
1 require File.dirname(__FILE__) + '/../../../spec_helper'
2 require 'net/http'
3 require File.dirname(__FILE__) + '/fixtures/http_server'
5 describe "Net::HTTP#lock" do
6   before(:all) do
7     NetHTTPSpecs.start_server
8   end
9   
10   after(:all) do
11     NetHTTPSpecs.stop_server
12   end
13   
14   before(:each) do
15     @http = Net::HTTP.start("localhost", 3333)
16   end
17   
18   it "sends a LOCK request to the passed path and returns the response" do
19     response = @http.lock("/request", "test=test")
20     response.should be_kind_of(Net::HTTPResponse)
21     response.body.should == "Request type: LOCK"
22   end
23 end