Class: Object::Not
Instance Method Summary collapse
-
#initialize(subject) ⇒ Not
constructor
A new instance of Not.
- #method_missing(sym, *args, &blk) ⇒ Object
Constructor Details
#initialize(subject) ⇒ Not
Returns a new instance of Not.
38 39 40 |
# File 'lib/expectations/object.rb', line 38 def initialize(subject) @subject = subject end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(sym, *args, &blk) ⇒ Object
42 43 44 |
# File 'lib/expectations/object.rb', line 42 def method_missing(sym, *args, &blk) @subject.send(sym,*args,&blk).not! end |