Sha256: 0f91af71289aabe7ce86389bee16161be851ef2e73504181f2d8f0f5b404f834

Contents?: true

Size: 715 Bytes

Versions: 5

Compression:

Stored size: 715 Bytes

Contents

require File.expand_path('../acceptance_test_helper', __FILE__)
require 'mocha/setup'

class Bug18914Test < Mocha::TestCase
  include AcceptanceTest

  def setup
    setup_acceptance_test
  end

  def teardown
    teardown_acceptance_test
  end

  class AlwaysEql
    def my_method
      true
    end

    def ==(_other)
      true
    end

    def eql?(_other)
      true
    end
  end

  def test_should_not_allow_stubbing_of_non_mock_instance_disrupted_by_legitimate_overriding_of_eql_method
    always_eql1 = AlwaysEql.new
    always_eql1.stubs(:my_method).returns(false)

    always_eql2 = AlwaysEql.new
    always_eql2.stubs(:my_method).returns(false)

    assert_equal false, always_eql2.my_method
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
mocha-1.9.0 test/acceptance/bug_18914_test.rb
cocoapods-dependency-html-0.0.2 vendor/bundle/gems/mocha-1.8.0/test/acceptance/bug_18914_test.rb
cocoapods-dependency-html-0.0.1 vendor/bundle/gems/mocha-1.8.0/test/acceptance/bug_18914_test.rb
mocha-1.8.0 test/acceptance/bug_18914_test.rb
mocha-1.7.0 test/acceptance/bug_18914_test.rb