Sha256: 0508658432e0fce2353da016ec5ac296a9db6bdb8b25001b0bda163b1c5de25e
Contents?: true
Size: 472 Bytes
Versions: 36
Compression:
Stored size: 472 Bytes
Contents
require 'spec_helper' describe RestClient::RawResponse do before do @tf = double("Tempfile", :read => "the answer is 42", :open => true) @net_http_res = double('net http response') @request = double('http request') @response = RestClient::RawResponse.new(@tf, @net_http_res, {}, @request) end it "behaves like string" do @response.to_s.should eq 'the answer is 42' end it "exposes a Tempfile" do @response.file.should eq @tf end end
Version data entries
36 entries across 34 versions & 8 rubygems