Sha256: 3360d738ddc5e0311d132211fdd3ad927a24e43f251d97cfc2caa2a62375d32c

Contents?: true

Size: 1.22 KB

Versions: 52

Compression:

Stored size: 1.22 KB

Contents

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

52 entries across 50 versions & 8 rubygems

Version Path
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/activesupport-5.0.7.1/lib/active_support/testing/method_call_assertions.rb
activesupport-5.0.7.2 lib/active_support/testing/method_call_assertions.rb
activesupport-5.0.7.1 lib/active_support/testing/method_call_assertions.rb
activesupport-5.0.7 lib/active_support/testing/method_call_assertions.rb
activesupport-5.0.6 lib/active_support/testing/method_call_assertions.rb
activesupport-5.0.6.rc1 lib/active_support/testing/method_call_assertions.rb
activesupport-5.0.5 lib/active_support/testing/method_call_assertions.rb
activesupport-5.0.5.rc2 lib/active_support/testing/method_call_assertions.rb
activesupport-5.0.5.rc1 lib/active_support/testing/method_call_assertions.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/method_call_assertions.rb
tdiary-5.0.5 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/method_call_assertions.rb
activesupport-5.0.4 lib/active_support/testing/method_call_assertions.rb
activesupport-5.0.4.rc1 lib/active_support/testing/method_call_assertions.rb
activesupport-5.0.3 lib/active_support/testing/method_call_assertions.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activesupport-5.0.2/lib/active_support/testing/method_call_assertions.rb
lazy_record-0.2.1 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/method_call_assertions.rb
lazy_record-0.2.0 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/method_call_assertions.rb
lazy_record-0.1.9 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/method_call_assertions.rb
lazy_record-0.1.8 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/method_call_assertions.rb
lazy_record-0.1.7 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/testing/method_call_assertions.rb