mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
23 lines
549 B
Ruby
23 lines
549 B
Ruby
|
require File.expand_path('../../../../spec_helper', __FILE__)
|
||
|
require 'cgi'
|
||
|
|
||
|
describe "CGI::QueryExtension#request_method" do
|
||
|
before :each do
|
||
|
ENV['REQUEST_METHOD'], @old_request_method = "GET", ENV['REQUEST_METHOD']
|
||
|
@cgi = CGI.new
|
||
|
end
|
||
|
|
||
|
after :each do
|
||
|
ENV['REQUEST_METHOD'] = @old_request_method
|
||
|
end
|
||
|
|
||
|
it "returns ENV['REQUEST_METHOD']" do
|
||
|
old_value, ENV['REQUEST_METHOD'] = ENV['REQUEST_METHOD'], "GET"
|
||
|
begin
|
||
|
@cgi.request_method.should == "GET"
|
||
|
ensure
|
||
|
ENV['REQUEST_METHOD'] = old_value
|
||
|
end
|
||
|
end
|
||
|
end
|