Class: Puppet::Pops::Types::CountMismatch Private
- Inherits:
-
SizeMismatch
- Object
- Mismatch
- ExpectedActualMismatch
- SizeMismatch
- Puppet::Pops::Types::CountMismatch
- Defined in:
- lib/puppet/pops/types/type_mismatch_describer.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary
Attributes inherited from ExpectedActualMismatch
Attributes inherited from Mismatch
Instance Method Summary collapse
-
#initialize(path, expected, actual) ⇒ CountMismatch
constructor
private
A new instance of CountMismatch.
- #message(variant, position) ⇒ Object private
Methods inherited from SizeMismatch
#from, #merge, #range_to_s, #to
Methods inherited from ExpectedActualMismatch
#==, #hash, #set_optional, #swap_expected
Methods inherited from Mismatch
#==, #canonical_path, #chop_path, #eql?, #format, #hash, #merge, #path_string, #to_s
Constructor Details
#initialize(path, expected, actual) ⇒ CountMismatch
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of CountMismatch.
522 523 524 |
# File 'lib/puppet/pops/types/type_mismatch_describer.rb', line 522 def initialize(path, expected, actual) super(path, expected, actual) end |
Instance Method Details
#message(variant, position) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
526 527 528 529 530 531 |
# File 'lib/puppet/pops/types/type_mismatch_describer.rb', line 526 def (variant, position) min = expected.from || 0 max = expected.to || Float::INFINITY suffix = min == 1 && (max == 1 || max == Float::INFINITY) || min == 0 && max == 1 ? '' : 's' "#{variant}#{position} expects #{range_to_s(expected, 'no')} argument#{suffix}, got #{range_to_s(actual, 'none')}" end |