blob: bced8c185a2d6c834a1fa12cd0a260589d339af4 (
plain) (
blame)
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
38
39
40
41
42
43
44
|
require 'spec_helper'
describe Zero::Response, '#finish' do
subject { Zero::Response.new() }
it "returns an array within status header and body" do
subject.status = 200
subject.header = {}
subject.body = []
value = subject.to_a
value.should be_an_instance_of(Array)
value[0].should eq(200) # Status code
value[1].should eq({}) # Headers
value[2].should eq([]) # Body
end
end
describe Zero::Response, '#status' do
it "must return the status always as an integer" do
subject.status = "foobar"
subject.status.should eq(0)
subject.status = 240.5
subject.status.should eq(240)
end
it "must return 200, if no status code was set" do
subject.status.should eq(200)
end
end
describe Zero::Response, '#header' do
it "must return an empty hash, if no header was set" do
subject.header.should eq({})
end
end
describe Zero::Response, '#body' do
it "must return an empty array, if no body was set" do
subject.body.should eq([])
end
end
|