module RSpec::Puppet::FunctionMatchers

Public Instance Methods

method_missing(method, *args, &block) click to toggle source
Calls superclass method
# File lib/rspec-puppet/matchers/dynamic_matchers.rb, line 12
def method_missing(method, *args, &block)
  return RSpec::Puppet::FunctionMatchers::Run.new if method == :run
  super
end