Sha256: 16a55336f21e87d55ca1d276e6b09b57a39863f0856ad24776b52b145cf11f4a
Contents?: true
Size: 501 Bytes
Versions: 144
Compression:
Stored size: 501 Bytes
Contents
describe "Sanity" do it "should have Symbol#ivar" do :name.ivar.should == '@name' end it "should have Symbol#setter" do :name.setter.should == 'name=' end it "should have String#ivar" do 'another'.ivar.should == '@another' end it "should have String#setter" do 'another'.setter.should == 'another=' end it "should have Symbol#cvar" do :name.cvar.should == '@@name' end it "should have String#cvar" do 'another'.cvar.should == '@@another' end end
Version data entries
144 entries across 144 versions & 1 rubygems