Sha256: 2667fb4c4da216e1533bd005b83b9d86452985771abdc2015852f367bc794904
Contents?: true
Size: 469 Bytes
Versions: 52
Compression:
Stored size: 469 Bytes
Contents
describe :struct_inspect, :shared => true do ruby_version_is "1.9" do it "returns a string representation without the class name for anonymous structs" do Struct.new(:a).new("").send(@method).should == '#<struct a="">' end end ruby_version_is ""..."1.9" do it "returns a string representation with the class name for anonymous structs" do Struct.new(:a).new("").send(@method).should =~ /#<struct #<Class:[^>]+> a=\"\">/ end end end
Version data entries
52 entries across 52 versions & 2 rubygems