Sha256: a58495141374a9fce0447a201e83eac811f96e124e8bd71131472de01736e729
Contents?: true
Size: 1.77 KB
Versions: 1
Compression:
Stored size: 1.77 KB
Contents
# frozen_string_literal: true module ConvenientService module RSpec module Matchers module Custom class DelegateTo module Entities class Matcher module Entities class ChainingsCollection module Errors class CallOriginalChainingIsAlreadySet < ::ConvenientService::Error def initialize message = <<~TEXT Call original chaining is already set. Did you use `with_calling_original` or `without_calling_original` multiple times? Or a combination of them? TEXT super(message) end end class ArgumentsChainingIsAlreadySet < ::ConvenientService::Error def initialize message = <<~TEXT Arguments chaining is already set. Did you use `with_arguments` or `without_arguments` multiple times? Or a combination of them? TEXT super(message) end end class ReturnItsValueChainingIsAlreadySet < ::ConvenientService::Error def initialize message = <<~TEXT Returns its value chaining is already set. Did you use `and_returns_its_value` multiple times? TEXT super(message) end end end end end end end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
convenient_service-0.12.0 | lib/convenient_service/rspec/matchers/custom/delegate_to/entities/matcher/entities/chainings_collection/errors.rb |