Sha256: ed2838fe871b2339e7ef701f3a8ff1d373feaf60a89e5b096938be69c042d9ad

Contents?: true

Size: 714 Bytes

Versions: 33

Compression:

Stored size: 714 Bytes

Contents

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

class Bug18914Test < Test::Unit::TestCase

  include AcceptanceTest

  def setup
    setup_acceptance_test
  end

  def teardown
    teardown_acceptance_test
  end

  class AlwaysEql

    def my_method
      true
    end

    def ==(o)
      true
    end

    def eql?(o)
      true
    end

  end

  def test_should_not_allow_stubbing_of_non_mock_instance_disrupted_by_legitimate_overriding_of_eql_method

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

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

    assert_equal false, always_eql_2.my_method
  end

end

Version data entries

33 entries across 28 versions & 3 rubygems

Version Path
mocha-0.12.3 test/acceptance/bug_18914_test.rb
challah-0.7.0.pre vendor/bundle/gems/mocha-0.12.2/test/acceptance/bug_18914_test.rb
mocha-0.12.2 test/acceptance/bug_18914_test.rb
mocha-0.12.1 test/acceptance/bug_18914_test.rb
mocha-0.12.0 test/acceptance/bug_18914_test.rb
challah-0.6.2 vendor/bundle/gems/mocha-0.11.4/test/acceptance/bug_18914_test.rb
challah-0.6.1 vendor/bundle/gems/mocha-0.11.4/test/acceptance/bug_18914_test.rb
challah-0.6.0 vendor/bundle/gems/mocha-0.11.4/test/acceptance/bug_18914_test.rb
mocha-0.11.4 test/acceptance/bug_18914_test.rb
mocha-0.11.3 test/acceptance/bug_18914_test.rb
mocha-0.11.2 test/acceptance/bug_18914_test.rb
mocha-0.11.1 test/acceptance/bug_18914_test.rb
mocha-0.11.0 test/acceptance/bug_18914_test.rb