Class: ConvenientService::RSpec::Matchers::Classes::Results::Base::Entities::Validator::Commands::ValidateResultStatus
- Inherits:
-
Support::Command
- Object
- Support::Command
- ConvenientService::RSpec::Matchers::Classes::Results::Base::Entities::Validator::Commands::ValidateResultStatus
- Includes:
- Support::Delegate
- Defined in:
- lib/convenient_service/rspec/matchers/classes/results/base/entities/validator/commands/validate_result_status.rb
Instance Attribute Summary collapse
- #validator ⇒ Object readonly private
Instance Method Summary collapse
- #call ⇒ Boolean private
- #chain ⇒ ConvenientService::RSpec::Matchers::Classes::Results::Base::Entities::Chain private
- #initialize(validator:) ⇒ void constructor private
- #matcher ⇒ ConvenientService::RSpec::Matchers::Classes::Results::Base private
- #result ⇒ ConvenientService::Service::Plugins::HasJSendResult::Entities::Result private
- #statuses ⇒ Array<Symbol> private
Methods included from Support::Delegate::ClassMethodsForForwardable
Methods inherited from Support::Command
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_status.rb', line 57 def initialize(validator:) @validator = validator end |
Instance Attribute Details
#validator ⇒ Object (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_status.rb', line 21 def validator @validator end |
Instance Method Details
#call ⇒ Boolean
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.
69 70 71 72 73 |
# File 'lib/convenient_service/rspec/matchers/classes/results/base/entities/validator/commands/validate_result_status.rb', line 69 def call return false unless matcher.result result.status.in?(casted_statuses) end |
#chain ⇒ ConvenientService::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_status.rb', line 42 delegate :chain, to: :matcher |
#matcher ⇒ ConvenientService::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_status.rb', line 28 delegate :matcher, to: :validator |
#result ⇒ ConvenientService::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_status.rb', line 35 delegate :result, to: :matcher |
#statuses ⇒ Array<Symbol>
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_status.rb', line 49 delegate :statuses, to: :chain |