File: bug_18914_test.rb

package info (click to toggle)
ruby-mocha 3.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,652 kB
  • sloc: ruby: 12,324; javascript: 499; makefile: 14
file content (39 lines) | stat: -rw-r--r-- 771 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# frozen_string_literal: true

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

class Bug18914Test < Mocha::TestCase
  include AcceptanceTestHelper

  def setup
    setup_acceptance_test
  end

  def teardown
    teardown_acceptance_test
  end

  class AlwaysEql
    def my_method # rubocop:disable Naming/PredicateMethod
      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