File: dynamic_matchers.rb

package info (click to toggle)
ruby-rspec-puppet 2.9.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,416 kB
  • sloc: ruby: 6,661; makefile: 6
file content (24 lines) | stat: -rw-r--r-- 827 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module RSpec::Puppet
  module ManifestMatchers
    def method_missing(method, *args, &block)
      return RSpec::Puppet::ManifestMatchers::CreateGeneric.new(method, *args, &block) if method.to_s =~ /^(create|contain)_/
      return RSpec::Puppet::ManifestMatchers::CountGeneric.new(nil, args[0], method) if method.to_s =~ /^have_.+_count$/
      return RSpec::Puppet::ManifestMatchers::Compile.new if method == :compile
      super
    end
  end

  module FunctionMatchers
    def method_missing(method, *args, &block)
      return RSpec::Puppet::FunctionMatchers::Run.new if method == :run
      super
    end
  end

  module TypeMatchers
    def method_missing(method, *args, &block)
      return RSpec::Puppet::TypeMatchers::CreateGeneric.new(method, *args, &block) if method == :be_valid_type
      super
    end
  end
end