Sha256: 0363faab732ad17aa73be15b4b0c35025039413de3350b0c6bc70a36ac1942da

Contents?: true

Size: 1011 Bytes

Versions: 10

Compression:

Stored size: 1011 Bytes

Contents

require 'forwardable'
require 'logger'

module Shoulda
  module Matchers
    # @private
    module Doublespeak
      class << self
        extend Forwardable

        def_delegators :world, :double_collection_for,
          :with_doubles_activated

        def world
          @_world ||= World.new
        end

        def debugging_enabled?
          ENV['DEBUG_DOUBLESPEAK'] == '1'
        end

        def debug(&block)
          if debugging_enabled?
            puts block.call # rubocop:disable Rails/Output
          end
        end
      end
    end
  end
end

require 'shoulda/matchers/doublespeak/double'
require 'shoulda/matchers/doublespeak/double_collection'
require 'shoulda/matchers/doublespeak/double_implementation_registry'
require 'shoulda/matchers/doublespeak/method_call'
require 'shoulda/matchers/doublespeak/object_double'
require 'shoulda/matchers/doublespeak/proxy_implementation'
require 'shoulda/matchers/doublespeak/stub_implementation'
require 'shoulda/matchers/doublespeak/world'

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
shoulda-matchers-6.2.0 lib/shoulda/matchers/doublespeak.rb
shoulda-matchers-6.1.0 lib/shoulda/matchers/doublespeak.rb
shoulda-matchers-6.0.0 lib/shoulda/matchers/doublespeak.rb
shoulda-matchers-5.3.0 lib/shoulda/matchers/doublespeak.rb
shoulda-matchers-5.2.0 lib/shoulda/matchers/doublespeak.rb
shoulda-matchers-5.1.0 lib/shoulda/matchers/doublespeak.rb
shoulda-matchers-5.0.0 lib/shoulda/matchers/doublespeak.rb
shoulda-matchers-5.0.0.rc1 lib/shoulda/matchers/doublespeak.rb
shoulda-matchers-4.5.1 lib/shoulda/matchers/doublespeak.rb
shoulda-matchers-4.5.0 lib/shoulda/matchers/doublespeak.rb