Class: Sbmt::Pact::Matchers::V3::Include
- Defined in:
- lib/sbmt/pact/matchers/v3/include.rb
Instance Attribute Summary
Attributes inherited from Base
#kind, #opts, #spec_version, #template
Instance Method Summary collapse
-
#initialize(template) ⇒ Include
constructor
A new instance of Include.
Methods inherited from Base
Constructor Details
#initialize(template) ⇒ Include
Returns a new instance of Include.
8 9 10 11 12 |
# File 'lib/sbmt/pact/matchers/v3/include.rb', line 8 def initialize(template) raise MatcherInitializationError, "#{self.class}: #{template} should be an instance of String" unless template.is_a?(String) super(spec_version: Sbmt::Pact::Matchers::PACT_SPEC_V3, kind: "include", template: template) end |