class LightService::Context::ExpectedKeyVerifier

Public Instance Methods

error_to_throw() click to toggle source
# File lib/light-service/context/key_verifier.rb, line 64
def error_to_throw
  ExpectedKeysNotInContextError
end
keys() click to toggle source
# File lib/light-service/context/key_verifier.rb, line 60
def keys
  action.expected_keys
end
throw_error_predicate(keys) click to toggle source
# File lib/light-service/context/key_verifier.rb, line 68
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 56
def type_name
  "expected"
end