0
0
zero/spec/unit/request/server/port_spec.rb

16 lines
444 B
Ruby
Raw Normal View History

2012-11-15 19:11:18 +01:00
require 'spec_helper'
describe Zero::Request::Server, '#port' do
subject { Zero::Request::Server.new(env) }
2013-01-04 19:42:25 +01:00
context 'sets the port to the given value' do
let(:env) { EnvGenerator.get('/foo', {'SERVER_PORT' => 80}) }
its(:port) { should be(80) }
end
context 'casts also the port to an integer, while setting it' do
let(:env) { EnvGenerator.get('/foo', {'SERVER_PORT' => '80'}) }
its(:port) { should be(80) }
end
2012-11-15 19:11:18 +01:00
end