Class: Sbmt::Pact::Matchers::V4::EachValue
- Defined in:
- lib/sbmt/pact/matchers/v4/each_value.rb
Instance Attribute Summary
Attributes inherited from Base
#kind, #opts, #spec_version, #template
Instance Method Summary collapse
- #as_plugin ⇒ Object
-
#initialize(value_matchers, template) ⇒ EachValue
constructor
A new instance of EachValue.
Methods inherited from Base
Constructor Details
#initialize(value_matchers, template) ⇒ EachValue
Returns a new instance of EachValue.
8 9 10 11 12 13 14 15 |
# File 'lib/sbmt/pact/matchers/v4/each_value.rb', line 8 def initialize(value_matchers, template) # raise MatcherInitializationError, "#{self.class}: #{template} should be a Hash" unless template.is_a?(Hash) raise MatcherInitializationError, "#{self.class}: #{value_matchers} should be an Array" unless value_matchers.is_a?(Array) raise MatcherInitializationError, "#{self.class}: #{value_matchers} should be instances of Sbmt::Pact::Matchers::Base" unless value_matchers.all?(Sbmt::Pact::Matchers::Base) raise MatcherInitializationError, "#{self.class}: #{value_matchers} size should be greater than 0" unless value_matchers.size > 0 super(spec_version: Sbmt::Pact::Matchers::PACT_SPEC_V4, kind: "each-value", template: template, opts: {rules: value_matchers}) end |
Instance Method Details
#as_plugin ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/sbmt/pact/matchers/v4/each_value.rb', line 17 def as_plugin if @template.is_a?(Hash) return { "pact:match" => "eachValue(matching($'SAMPLE'))", "SAMPLE" => serialize!(@template.deep_dup, :plugin) } end @opts[:rules].map do |matcher| "eachValue(#{matcher.as_plugin})" end.join(", ") end |