class Hermod::Validators::ValuePresence

checks the value is present

def message(value, attributes)

def message(value, attributes)
  "isn't optional but no value was provided"
end

def test(value, attributes)

def test(value, attributes)
  value.present?
end