diff options
Diffstat (limited to 'spec/unit/request/server')
-rw-r--r-- | spec/unit/request/server/port_spec.rb | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/spec/unit/request/server/port_spec.rb b/spec/unit/request/server/port_spec.rb index 25c3cb0..24f6b5c 100644 --- a/spec/unit/request/server/port_spec.rb +++ b/spec/unit/request/server/port_spec.rb @@ -2,6 +2,14 @@ require 'spec_helper' describe Zero::Request::Server, '#port' do subject { Zero::Request::Server.new(env) } - let(:env) { EnvGenerator.get('/foo', {'SERVER_PORT' => 80}) } - its(:port) { should be(80) } + + 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 end |