spec/unit/headers_spec.rb in goliath-1.0.5 vs spec/unit/headers_spec.rb in goliath-1.0.6

- old
+ new

@@ -6,48 +6,48 @@ @h = Goliath::Headers.new end it 'outputs in the correct format' do @h['my_header'] = 'my_value' - @h.to_s.should == "my_header: my_value\r\n" + expect(@h.to_s).to eq("my_header: my_value\r\n") end it 'suppresses duplicate keys' do @h['my_header'] = 'my_value1' @h['my_header'] = 'my_value2' - @h.to_s.should == "my_header: my_value1\r\n" + expect(@h.to_s).to eq("my_header: my_value1\r\n") end it 'returns true if a key has been set' do @h['my_header'] = 'my_value' - @h.has_key?('my_header').should be true + expect(@h.has_key?('my_header')).to be true end it 'returns false if the key has not been set' do - @h.has_key?('my_header').should be false + expect(@h.has_key?('my_header')).to be false end it 'ignores nil values' do @h['my_header'] = nil - @h.to_s.should == '' + expect(@h.to_s).to eq('') end it 'allows a value after setting nil' do @h['my_header'] = nil @h['my_header'] = 'my_value' - @h.to_s.should == "my_header: my_value\r\n" + expect(@h.to_s).to eq("my_header: my_value\r\n") end it 'formats time as an http time' do time = Time.now @h['my_time'] = time - @h.to_s.should == "my_time: #{time.httpdate}\r\n" + expect(@h.to_s).to eq("my_time: #{time.httpdate}\r\n") end %w(Set-Cookie Set-Cookie2 Warning WWW-Authenticate).each do |key| it "allows #{key} as to be duplicate" do @h[key] = 'value1' @h[key] = 'value2' - @h.to_s.should == "#{key}: value1\r\n#{key}: value2\r\n" + expect(@h.to_s).to eq("#{key}: value1\r\n#{key}: value2\r\n") end end end