Class: Object

Inherits:
BasicObject
Defined in:
lib/freeman.rb

Instance Method Summary collapse

Instance Method Details

#is(expected) ⇒ Object



12
13
14
# File 'lib/freeman.rb', line 12

def is(expected)
  self == expected
end

#isnt(expected) ⇒ Object



16
17
18
# File 'lib/freeman.rb', line 16

def isnt(expected)
  self != expected
end