0
0
Fork 0

content_type sets the Content-Type header to the given value

This commit is contained in:
Stormwind 2012-11-23 19:54:17 +01:00
parent 78121c6eea
commit 16eef08688
2 changed files with 18 additions and 3 deletions

View File

@ -46,5 +46,12 @@ module Zero
header['Content-Length'] = body.join.bytesize
end
# Sets the content type to the given value
# Also creates it, if it does not exists
#
def content_type(value)
header['Content-Type'] = value
end
end
end

View File

@ -61,20 +61,20 @@ describe Zero::Response do
end
describe '#content_length' do
it "sets the content_length to 0, if there is no content" do
it "sets the Content-Length to 0, if there is no content" do
subject.content_length
subject.header['Content-Length'].should eq(0)
end
it "sets the content_length to the size of the message body" do
it "sets the Content-Length to the size of the message body" do
subject.body = ['foo', 'bar']
subject.content_length
subject.header['Content-Length'].should eq(6)
end
it "sets the content_length to the bytesize of the message body" do
it "sets the Content-Length to the bytesize of the message body" do
subject.body = ['föö', 'bär']
subject.content_length
@ -82,4 +82,12 @@ describe Zero::Response do
end
end
describe '#content_type' do
it "sets the Content-Type to the given value" do
subject.content_type 'application/json'
subject.header['Content-Type'].should eq('application/json')
end
end
end