class MotherBrain::UnexpectedProvisionCount

Attributes

expected[R]
got[R]

Public Class Methods

new(expected, got) click to toggle source
# File lib/mb/errors.rb, line 576
def initialize(expected, got)
  @expected = expected
  @got      = got
end

Public Instance Methods

message() click to toggle source
# File lib/mb/errors.rb, line 581
def message
  "Expected '#{expected}' nodes to be provisioned but got: '#{got}'"
end