class Object
Public Instance Methods
identical?(other)
click to toggle source
# File lib/be/core_ext.rb, line 3 def identical?(other) object_id == other.object_id end
should(assay)
click to toggle source
# File lib/be/should.rb, line 7 def should(assay) assay.to_assertor.assert!(self) end
should_not(assay)
click to toggle source
# File lib/be/should.rb, line 12 def should_not(assay) assay.to_assertor.refute!(self) end