Sha256: 4939458ef3ae376f9707d401d9a47b71108ce5b2524b9c854ed945a1469c7135

Contents?: true

Size: 672 Bytes

Versions: 11

Compression:

Stored size: 672 Bytes

Contents

# frozen_string_literal: true

require_relative "results/be_error"
require_relative "results/be_failure"
require_relative "results/be_success"

require_relative "results/be_not_error"
require_relative "results/be_not_failure"
require_relative "results/be_not_success"

module ConvenientService
  module RSpec
    module Matchers
      module Results
        include Support::Concern

        included do
          include Results::BeError
          include Results::BeFailure
          include Results::BeSuccess

          include Results::BeNotError
          include Results::BeNotFailure
          include Results::BeNotSuccess
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
convenient_service-0.13.0 lib/convenient_service/rspec/matchers/results.rb
convenient_service-0.12.0 lib/convenient_service/rspec/matchers/results.rb
convenient_service-0.11.0 lib/convenient_service/rspec/matchers/results.rb
convenient_service-0.10.1 lib/convenient_service/rspec/matchers/results.rb
convenient_service-0.10.0 lib/convenient_service/rspec/matchers/results.rb
convenient_service-0.9.0 lib/convenient_service/rspec/matchers/results.rb
convenient_service-0.8.0 lib/convenient_service/rspec/matchers/results.rb
convenient_service-0.7.0 lib/convenient_service/rspec/matchers/results.rb
convenient_service-0.6.0 lib/convenient_service/rspec/matchers/results.rb
convenient_service-0.5.0 lib/convenient_service/rspec/matchers/results.rb
convenient_service-0.4.0 lib/convenient_service/rspec/matchers/results.rb