Class: RSpecPuppetUtils::MockFunction

Inherits:
Object
  • Object
show all
Defined in:
lib/rspec_puppet_utils/mock_function.rb

Instance Method Summary collapse

Constructor Details

#initialize(name, options = {}) {|_self| ... } ⇒ MockFunction

Returns a new instance of MockFunction.

Yields:

  • (_self)

Yield Parameters:



22
23
24
25
26
27
# File 'lib/rspec_puppet_utils/mock_function.rb', line 22

def initialize(name, options = {})
  parse_options! options
  this = self
  Puppet::Parser::Functions.newfunction(name.to_sym, options) { |args| this.call args }
  yield self if block_given?
end

Instance Method Details

#call(args) ⇒ Object



29
30
31
# File 'lib/rspec_puppet_utils/mock_function.rb', line 29

def call(args)
  execute *args
end

#execute(*args) ⇒ Object



33
34
35
# File 'lib/rspec_puppet_utils/mock_function.rb', line 33

def execute(*args)
  args
end

#expect(*args) ⇒ Object

Use expected instead, see readme



52
53
54
55
# File 'lib/rspec_puppet_utils/mock_function.rb', line 52

def expect(*args)
  RSpec::Puppet::Support.clear_cache unless args.include? :keep_cache
  self.expects(:call)
end

#expected(*args) ⇒ Object



41
42
43
44
# File 'lib/rspec_puppet_utils/mock_function.rb', line 41

def expected(*args)
  RSpec::Puppet::Support.clear_cache unless args.include? :keep_cache
  self.expects(:execute)
end

#stubObject

Use stubbed instead, see readme



47
48
49
# File 'lib/rspec_puppet_utils/mock_function.rb', line 47

def stub
  self.stubs(:call)
end

#stubbedObject



37
38
39
# File 'lib/rspec_puppet_utils/mock_function.rb', line 37

def stubbed
  self.stubs(:execute)
end