Sha256: db02094393776ea0fbbec93dabc534100602b0c0b064c87a86f8b3bc1e8269bf

Contents?: true

Size: 1.22 KB

Versions: 6

Compression:

Stored size: 1.22 KB

Contents

require 'minitest/mock'

module CoreExt
  module Testing
    module MethodCallAssertions # :nodoc:
      private
        def assert_called(object, method_name, message = nil, times: 1, returns: nil)
          times_called = 0

          object.stub(method_name, proc { times_called += 1; returns }) { yield }

          error = "Expected #{method_name} to be called #{times} times, " \
            "but was called #{times_called} times"
          error = "#{message}.\n#{error}" if message
          assert_equal times, times_called, error
        end

        def assert_called_with(object, method_name, args = [], returns: nil)
          mock = Minitest::Mock.new

          if args.all? { |arg| arg.is_a?(Array) }
            args.each { |arg| mock.expect(:call, returns, arg) }
          else
            mock.expect(:call, returns, args)
          end

          object.stub(method_name, mock) { yield }

          mock.verify
        end

        def assert_not_called(object, method_name, message = nil, &block)
          assert_called(object, method_name, message, times: 0, &block)
        end

        def stub_any_instance(klass, instance: klass.new)
          klass.stub(:new, instance) { yield instance }
        end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
core_ext-0.0.6 lib/core_ext/testing/method_call_assertions.rb
core_ext-0.0.5 lib/core_ext/testing/method_call_assertions.rb
core_ext-0.0.4 lib/core_ext/testing/method_call_assertions.rb
core_ext-0.0.3 lib/core_ext/testing/method_call_assertions.rb
core_ext-0.0.2 lib/core_ext/testing/method_call_assertions.rb
core_ext-0.0.1 lib/core_ext/testing/method_call_assertions.rb