Sha256: cd663b0eab0312323e27039e0bb69a57ed72f5d3a66a0432b8568f7ce26a08b6
Contents?: true
Size: 466 Bytes
Versions: 52
Compression:
Stored size: 466 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) ruby_version_is "1.8.7" do describe "Symbol#to_proc" do it "returns a new Proc" do proc = :to_s.to_proc proc.should be_kind_of(Proc) end it "sends self to arguments passed when calling #call on the proc" do obj = mock("Receiving #to_s") obj.should_receive(:to_s).and_return("Received #to_s") :to_s.to_proc.call(obj).should == "Received #to_s" end end end
Version data entries
52 entries across 52 versions & 2 rubygems