Sha256: 49b5637ecc36a34d42b1f88eef01a3ebd06c468ee52130a0ac0591927cac6bca
Contents?: true
Size: 467 Bytes
Versions: 63
Compression:
Stored size: 467 Bytes
Contents
require File.join( File.dirname(File.expand_path(__FILE__)), 'base') describe RestClient::RawResponse do before do @tf = mock("Tempfile", :read => "the answer is 42", :open => true) @net_http_res = mock('net http response') @response = RestClient::RawResponse.new(@tf, @net_http_res, {}) end it "behaves like string" do @response.to_s.should == 'the answer is 42' end it "exposes a Tempfile" do @response.file.should == @tf end end
Version data entries
63 entries across 57 versions & 11 rubygems