Sha256: 7a261b8b888182fcb20b9d839a896854d833b37b37afd51f29b111e533453485
Contents?: true
Size: 495 Bytes
Versions: 83
Compression:
Stored size: 495 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' 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
83 entries across 83 versions & 1 rubygems