Class: Sbmt::Pact::Matchers::V3::Number

Inherits:
Base
  • Object
show all
Defined in:
lib/sbmt/pact/matchers/v3/number.rb

Instance Attribute Summary

Attributes inherited from Base

#kind, #opts, #spec_version, #template

Instance Method Summary collapse

Methods inherited from Base

#as_basic, #as_plugin

Constructor Details

#initialize(template) ⇒ Number

Returns a new instance of Number.



8
9
10
11
12
# File 'lib/sbmt/pact/matchers/v3/number.rb', line 8

def initialize(template)
  raise MatcherInitializationError, "#{self.class}: #{template} should be an instance of Numeric" unless template.is_a?(Numeric)

  super(spec_version: Sbmt::Pact::Matchers::PACT_SPEC_V3, kind: "number", template: template)
end