diff options
Diffstat (limited to 'spec/unit/request/server/protocol_spec.rb')
-rw-r--r-- | spec/unit/request/server/protocol_spec.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/unit/request/server/protocol_spec.rb b/spec/unit/request/server/protocol_spec.rb deleted file mode 100644 index 5aac149..0000000 --- a/spec/unit/request/server/protocol_spec.rb +++ /dev/null @@ -1,9 +0,0 @@ -require 'spec_helper' - -describe Zero::Request::Server, '#protocol' do - subject { Zero::Request::Server.new(env) } - let(:protocol) { 'HTTP FOO' } - let(:env) { EnvGenerator.get('/foo', {'SERVER_PROTOCOL' => protocol}) } - its(:protocol) { should be(protocol) } -end - |