Class: ConvenientService::RSpec::Matchers::Classes::Results::Base::Entities::Validator::Commands::ValidateResultService

Inherits:
Support::Command
  • Object
show all
Includes:
Support::Delegate
Defined in:
lib/convenient_service/rspec/matchers/classes/results/base/entities/validator/commands/validate_result_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Support::Concern

included

Methods inherited from Support::Command

[], call

Constructor Details

#initialize(validator:) ⇒ void

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



57
58
59
# File 'lib/convenient_service/rspec/matchers/classes/results/base/entities/validator/commands/validate_result_service.rb', line 57

def initialize(validator:)
  @validator = validator
end

Instance Attribute Details

#validatorObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



21
22
23
# File 'lib/convenient_service/rspec/matchers/classes/results/base/entities/validator/commands/validate_result_service.rb', line 21

def validator
  @validator
end

Instance Method Details

#callBoolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


66
67
68
69
70
71
# File 'lib/convenient_service/rspec/matchers/classes/results/base/entities/validator/commands/validate_result_service.rb', line 66

def call
  return false unless matcher.result
  return true unless chain.used_service?

  result.service.instance_of?(service)
end

#chainConvenientService::RSpec::Matchers::Classes::Results::Base::Entities::Chain

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



42
# File 'lib/convenient_service/rspec/matchers/classes/results/base/entities/validator/commands/validate_result_service.rb', line 42

delegate :chain, to: :matcher

#matcherConvenientService::RSpec::Matchers::Classes::Results::Base

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



28
# File 'lib/convenient_service/rspec/matchers/classes/results/base/entities/validator/commands/validate_result_service.rb', line 28

delegate :matcher, to: :validator

#resultConvenientService::Service::Plugins::HasJSendResult::Entities::Result

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



35
# File 'lib/convenient_service/rspec/matchers/classes/results/base/entities/validator/commands/validate_result_service.rb', line 35

delegate :result, to: :matcher

#serviceConvenientService::Service

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



49
# File 'lib/convenient_service/rspec/matchers/classes/results/base/entities/validator/commands/validate_result_service.rb', line 49

delegate :service, to: :chain