Sha256: a6fa0d7de0d10da5ebd56f6c24fef4d7137f5bce6daa10553460f13ed227d643

Contents?: true

Size: 1.25 KB

Versions: 49

Compression:

Stored size: 1.25 KB

Contents

# frozen_string_literal: true

require "minitest/mock"

module ActiveSupport
  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

49 entries across 49 versions & 8 rubygems

Version Path
activesupport-5.2.8.1 lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.8 lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.7.1 lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.7 lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.6.3 lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.6.2 lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.6.1 lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.6 lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.4.6 lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.5 lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.4.5 lib/active_support/testing/method_call_assertions.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/activesupport-5.2.4.1/lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.4.4 lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.4.3 lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.4.2 lib/active_support/testing/method_call_assertions.rb
grape-extra_validators-1.0.0 vendor/bundle/ruby/2.4.0/gems/activesupport-5.2.4.1/lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.4.1 lib/active_support/testing/method_call_assertions.rb
zuora_connect_ui-0.10.0 vendor/ruby/2.6.0/gems/activesupport-5.2.3/lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.4 lib/active_support/testing/method_call_assertions.rb
activesupport-5.2.4.rc1 lib/active_support/testing/method_call_assertions.rb