Sha256: 4f6fb3e05fdf08c65a87cb07b1ae5f2a105136bcf9a19f47e2180669acfa3dc5

Contents?: true

Size: 565 Bytes

Versions: 2

Compression:

Stored size: 565 Bytes

Contents

# frozen_string_literal: true

module ConvenientService
  module RSpec
    module Matchers
      module Custom
        module Results
          class BeNotFailure < Results::Base
            ##
            # @api private
            #
            # @return [Array<Symbol>]
            #
            def statuses
              [
                Service::Plugins::HasJSendResult::Constants::SUCCESS_STATUS,
                Service::Plugins::HasJSendResult::Constants::ERROR_STATUS
              ]
            end
          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
convenient_service-0.14.0 lib/convenient_service/rspec/matchers/custom/results/be_not_failure.rb
convenient_service-0.13.0 lib/convenient_service/rspec/matchers/custom/results/be_not_failure.rb