Sha256: 3dccab8c3be1d8e5b9cc59c5f0401bcfa986eb6e3f867c10433b8a44a4260ccf
Contents?: true
Size: 757 Bytes
Versions: 83
Compression:
Stored size: 757 Bytes
Contents
describe :module_equal, :shared => true do it "returns true if self and the given module are the same" do ModuleSpecs.send(@method, ModuleSpecs).should == true ModuleSpecs::Child.send(@method, ModuleSpecs::Child).should == true ModuleSpecs::Parent.send(@method, ModuleSpecs::Parent).should == true ModuleSpecs::Basic.send(@method, ModuleSpecs::Basic).should == true ModuleSpecs::Super.send(@method, ModuleSpecs::Super).should == true ModuleSpecs::Child.send(@method, ModuleSpecs).should == false ModuleSpecs::Child.send(@method, ModuleSpecs::Parent).should == false ModuleSpecs::Child.send(@method, ModuleSpecs::Basic).should == false ModuleSpecs::Child.send(@method, ModuleSpecs::Super).should == false end end
Version data entries
83 entries across 83 versions & 1 rubygems