Class: RSpecPuppetUtils::MockFunction
- Inherits:
-
Object
- Object
- RSpecPuppetUtils::MockFunction
- Defined in:
- lib/mock_function.rb
Instance Method Summary collapse
- #expect ⇒ Object
-
#initialize(name, options = {}) {|_self| ... } ⇒ MockFunction
constructor
A new instance of MockFunction.
- #stub ⇒ Object
Constructor Details
#initialize(name, options = {}) {|_self| ... } ⇒ MockFunction
Returns a new instance of MockFunction.
8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/mock_function.rb', line 8 def initialize(name, = {}) this = self Puppet::Parser::Functions.newfunction(name.to_sym, ) { |args| this.call args} yield self if block_given? if [:type] == :statement # call is called on statement function incase expects(:call) is needed # The method is defined incase expects(:call) isn't used def this.call args args end end end |
Instance Method Details
#expect ⇒ Object
27 28 29 |
# File 'lib/mock_function.rb', line 27 def expect self.expects(:call) end |
#stub ⇒ Object
23 24 25 |
# File 'lib/mock_function.rb', line 23 def stub self.stubs(:call) end |