diff options
Diffstat (limited to 'spec/unit/request/server/port_spec.rb')
-rw-r--r-- | spec/unit/request/server/port_spec.rb | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/spec/unit/request/server/port_spec.rb b/spec/unit/request/server/port_spec.rb deleted file mode 100644 index 24f6b5c..0000000 --- a/spec/unit/request/server/port_spec.rb +++ /dev/null @@ -1,15 +0,0 @@ -require 'spec_helper' - -describe Zero::Request::Server, '#port' do - subject { Zero::Request::Server.new(env) } - - 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 |