forked from piotrmurach/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheaders_spec.rb
More file actions
37 lines (26 loc) · 1021 Bytes
/
Copy pathheaders_spec.rb
File metadata and controls
37 lines (26 loc) · 1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# encoding: utf-8
require 'spec_helper'
describe Github::ResponseWrapper, '#headers' do
let(:env) {
{ :response_headers => {
'Content-Type' => "application/json; charset=utf-8",
'X-RateLimit-Remaining' => '4999',
'X-RateLimit-Limit' => '5000',
'content-length' => '344',
'ETag' => "\"d9a88f20567726e29d35c6fae87cef2f\"",
'Server' => "nginx/1.0.4",
'Date' => "Sun, 05 Feb 2012 15:02:34 GMT",
}, :body => ['some'], :status => 200 }
}
let(:res) { Faraday::Response.new env }
let(:object) { described_class.new res, nil }
subject { object.headers }
its(:content_type) { should match 'application/json' }
its(:content_length) { should match '344' }
its(:ratelimit_limit) { should == '5000' }
its(:ratelimit_remaining) { should == '4999' }
its(:status) { should be 200 }
its(:etag) { should eql "\"d9a88f20567726e29d35c6fae87cef2f\"" }
its(:date) { should eql "Sun, 05 Feb 2012 15:02:34 GMT" }
its(:server) { should eql "nginx/1.0.4" }
end