class LightService::Context::PromisedKeyVerifier

Public Instance Methods

error_to_throw() click to toggle source
# File lib/light-service/context/key_verifier.rb, line 82
def error_to_throw
  PromisedKeysNotInContextError
end
keys() click to toggle source
# File lib/light-service/context/key_verifier.rb, line 78
def keys
  action.promised_keys
end
throw_error_predicate(keys) click to toggle source
# File lib/light-service/context/key_verifier.rb, line 86
def throw_error_predicate(keys)
  !are_all_keys_in_context?(keys)
end
type_name() click to toggle source
# File lib/light-service/context/key_verifier.rb, line 74
def type_name
  "promised"
end