Class: Sbmt::Pact::Matchers::V4::EachKey
- Defined in:
- lib/sbmt/pact/matchers/v4/each_key.rb
Instance Attribute Summary
Attributes inherited from Base
#kind, #opts, #spec_version, #template
Instance Method Summary collapse
- #as_plugin ⇒ Object
-
#initialize(key_matchers, template) ⇒ EachKey
constructor
A new instance of EachKey.
Methods inherited from Base
Constructor Details
#initialize(key_matchers, template) ⇒ EachKey
Returns a new instance of EachKey.
8 9 10 11 12 13 14 15 |
# File 'lib/sbmt/pact/matchers/v4/each_key.rb', line 8 def initialize(key_matchers, template) raise MatcherInitializationError, "#{self.class}: #{template} should be a Hash" unless template.is_a?(Hash) raise MatcherInitializationError, "#{self.class}: #{key_matchers} should be an Array" unless key_matchers.is_a?(Array) raise MatcherInitializationError, "#{self.class}: #{key_matchers} should be instances of Sbmt::Pact::Matchers::Base" unless key_matchers.all?(Sbmt::Pact::Matchers::Base) raise MatcherInitializationError, "#{self.class}: #{key_matchers} size should be greater than 0" unless key_matchers.size > 0 super(spec_version: Sbmt::Pact::Matchers::PACT_SPEC_V4, kind: "each-key", template: template, opts: {rules: key_matchers}) end |
Instance Method Details
#as_plugin ⇒ Object
17 18 19 20 21 |
# File 'lib/sbmt/pact/matchers/v4/each_key.rb', line 17 def as_plugin @opts[:rules].map do |matcher| "eachKey(#{matcher.as_plugin})" end.join(", ") end |