mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
![eregon](/assets/img/avatar_default.png)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
26 lines
597 B
Ruby
26 lines
597 B
Ruby
require_relative '../../../spec_helper'
|
|
require 'cgi'
|
|
|
|
describe "CGI::QueryExtension#server_port" 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['SERVER_PORT'] as Integer" do
|
|
old_value = ENV['SERVER_PORT']
|
|
begin
|
|
ENV['SERVER_PORT'] = nil
|
|
@cgi.server_port.should be_nil
|
|
|
|
ENV['SERVER_PORT'] = "3000"
|
|
@cgi.server_port.should eql(3000)
|
|
ensure
|
|
ENV['SERVER_PORT'] = old_value
|
|
end
|
|
end
|
|
end
|