class EFIValidate::EFIValidationError

Attributes

data[R]
hash[R]
row[R]

Public Class Methods

new(row, data, hash) click to toggle source
# File lib/efivalidate/efi_validation_error.rb, line 5
def initialize(row, data, hash)
  @row = row
  @data = data
  @hash = hash
end

Public Instance Methods

to_s() click to toggle source
# File lib/efivalidate/efi_validation_error.rb, line 11
def to_s
  "Expected #{row} to be #{@hash}"
end