From 7870c5c51fdaa438c2de1f175a7506afdb3a6280 Mon Sep 17 00:00:00 2001 From: Stormwind Date: Fri, 4 Jan 2013 19:42:25 +0100 Subject: Kill mutant in Zero::Request::Server --- spec/unit/request/server/port_spec.rb | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'spec/unit/request') 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 -- cgit v1.2.3-70-g09d2