spec/httpi/response_spec.rb in httpi-0.9.3 vs spec/httpi/response_spec.rb in httpi-0.9.4
- old
+ new
@@ -5,119 +5,119 @@
context "normal" do
let(:response) { HTTPI::Response.new 200, {}, Fixture.xml }
describe "#error?" do
- it "should return false" do
+ it "returns false" do
response.should_not be_an_error
end
end
describe "#headers" do
- it "should return the HTTP response headers" do
+ it "returns the HTTP response headers" do
response.headers.should == {}
end
end
describe "#code" do
- it "should return the HTTP response code" do
+ it "returns the HTTP response code" do
response.code.should == 200
end
- it "should always return an Integer" do
+ it "always returns an Integer" do
response = HTTPI::Response.new "200", {}, ""
response.code.should == 200
end
end
describe "#multipart" do
- it "should return false" do
+ it "returns false" do
response.should_not be_multipart
end
end
end
context "empty" do
let(:response) { HTTPI::Response.new 204, {}, nil }
describe "#body" do
- it "should return an empty String" do
+ it "returns an empty String" do
response.body.should == ""
end
end
end
context "multipart" do
let(:response) { HTTPI::Response.new 200, { "Content-Type" => "multipart/related" }, "multipart" }
describe "#multipart" do
- it "should return true" do
+ it "returns true" do
response.should be_multipart
end
end
end
context "error" do
let(:response) { HTTPI::Response.new 404, {}, "" }
describe "#error?" do
- it "should return true" do
+ it "returns true" do
response.should be_an_error
end
end
end
context "gzipped" do
let(:response) { HTTPI::Response.new 200, { "Content-Encoding" => "gzip" }, Fixture.gzip }
describe "#headers" do
- it "should return the HTTP response headers" do
+ it "returns the HTTP response headers" do
response.headers.should == { "Content-Encoding" => "gzip" }
end
end
describe "#body" do
- it "should return the (gzip decoded) HTTP response body" do
+ it "returns the (gzip decoded) HTTP response body" do
response.body.should == Fixture.xml
end
- it "should bubble Zlib errors" do
+ it "bubbles Zlib errors" do
arbitrary_error = Class.new(ArgumentError)
Zlib::GzipReader.expects(:new).raises(arbitrary_error)
- lambda { response.body }.should raise_error(arbitrary_error)
+ expect { response.body }.to raise_error(arbitrary_error)
end
end
describe "#raw_body" do
- it "should return the raw HTML response body" do
+ it "returns the raw HTML response body" do
response.raw_body.should == Fixture.gzip
end
end
end
context "DIME" do
let(:response) { HTTPI::Response.new 200, { "Content-Type" => "application/dime" }, Fixture.dime }
describe "#headers" do
- it "should return the HTTP response headers" do
+ it "returns the HTTP response headers" do
response.headers.should == { "Content-Type" => "application/dime" }
end
end
describe "#body" do
- it "should return the (dime decoded) HTTP response body" do
+ it "returns the (dime decoded) HTTP response body" do
response.body.should == Fixture.xml_dime
end
end
describe "#raw_body" do
- it "should return the raw HTML response body" do
+ it "returns the raw HTML response body" do
response.raw_body.should == Fixture.dime
end
end
describe "#attachments" do
- it "should return proper attachment when given a dime response" do
+ it "returns proper attachment when given a dime response" do
response.attachments.first.data == File.read(File.expand_path("../../fixtures/attachment.gif", __FILE__))
end
end
end