mcmire-rr 1.0.5.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (155) hide show
  1. data/CHANGES +269 -0
  2. data/Gemfile +16 -0
  3. data/Gemfile.lock +47 -0
  4. data/LICENSE +22 -0
  5. data/README.rdoc +390 -0
  6. data/Rakefile +49 -0
  7. data/VERSION +1 -0
  8. data/lib/rr.rb +101 -0
  9. data/lib/rr/adapters/minitest.rb +31 -0
  10. data/lib/rr/adapters/rr_methods.rb +146 -0
  11. data/lib/rr/adapters/rspec.rb +61 -0
  12. data/lib/rr/adapters/rspec2.rb +22 -0
  13. data/lib/rr/adapters/test_unit.rb +31 -0
  14. data/lib/rr/blank_slate.rb +17 -0
  15. data/lib/rr/class_instance_method_defined.rb +9 -0
  16. data/lib/rr/double.rb +154 -0
  17. data/lib/rr/double_definitions/child_double_definition_create.rb +27 -0
  18. data/lib/rr/double_definitions/double_definition.rb +365 -0
  19. data/lib/rr/double_definitions/double_definition_create.rb +139 -0
  20. data/lib/rr/double_definitions/double_definition_create_blank_slate.rb +26 -0
  21. data/lib/rr/double_definitions/double_injections/any_instance_of.rb +28 -0
  22. data/lib/rr/double_definitions/double_injections/instance.rb +16 -0
  23. data/lib/rr/double_definitions/strategies/double_injection/any_instance_of.rb +30 -0
  24. data/lib/rr/double_definitions/strategies/double_injection/double_injection_strategy.rb +10 -0
  25. data/lib/rr/double_definitions/strategies/double_injection/instance.rb +17 -0
  26. data/lib/rr/double_definitions/strategies/implementation/implementation_strategy.rb +10 -0
  27. data/lib/rr/double_definitions/strategies/implementation/proxy.rb +60 -0
  28. data/lib/rr/double_definitions/strategies/implementation/reimplementation.rb +14 -0
  29. data/lib/rr/double_definitions/strategies/implementation/strongly_typed_reimplementation.rb +15 -0
  30. data/lib/rr/double_definitions/strategies/strategy.rb +43 -0
  31. data/lib/rr/double_definitions/strategies/strategy_methods.rb +53 -0
  32. data/lib/rr/double_definitions/strategies/verification/dont_allow.rb +31 -0
  33. data/lib/rr/double_definitions/strategies/verification/mock.rb +42 -0
  34. data/lib/rr/double_definitions/strategies/verification/stub.rb +43 -0
  35. data/lib/rr/double_definitions/strategies/verification/verification_strategy.rb +10 -0
  36. data/lib/rr/double_matches.rb +42 -0
  37. data/lib/rr/errors/argument_equality_error.rb +6 -0
  38. data/lib/rr/errors/double_definition_error.rb +6 -0
  39. data/lib/rr/errors/double_not_found_error.rb +6 -0
  40. data/lib/rr/errors/double_order_error.rb +6 -0
  41. data/lib/rr/errors/rr_error.rb +20 -0
  42. data/lib/rr/errors/spy_verification_errors/double_injection_not_found_error.rb +8 -0
  43. data/lib/rr/errors/spy_verification_errors/invocation_count_error.rb +8 -0
  44. data/lib/rr/errors/spy_verification_errors/spy_verification_error.rb +8 -0
  45. data/lib/rr/errors/subject_does_not_implement_method_error.rb +6 -0
  46. data/lib/rr/errors/subject_has_different_arity_error.rb +6 -0
  47. data/lib/rr/errors/times_called_error.rb +6 -0
  48. data/lib/rr/expectations/any_argument_expectation.rb +21 -0
  49. data/lib/rr/expectations/argument_equality_expectation.rb +41 -0
  50. data/lib/rr/expectations/times_called_expectation.rb +57 -0
  51. data/lib/rr/hash_with_object_id_key.rb +46 -0
  52. data/lib/rr/injections/double_injection.rb +220 -0
  53. data/lib/rr/injections/injection.rb +33 -0
  54. data/lib/rr/injections/method_missing_injection.rb +73 -0
  55. data/lib/rr/injections/singleton_method_added_injection.rb +72 -0
  56. data/lib/rr/method_dispatches/base_method_dispatch.rb +84 -0
  57. data/lib/rr/method_dispatches/method_dispatch.rb +59 -0
  58. data/lib/rr/method_dispatches/method_missing_dispatch.rb +61 -0
  59. data/lib/rr/proc_from_block.rb +7 -0
  60. data/lib/rr/recorded_calls.rb +103 -0
  61. data/lib/rr/space.rb +119 -0
  62. data/lib/rr/spy_verification.rb +48 -0
  63. data/lib/rr/spy_verification_proxy.rb +13 -0
  64. data/lib/rr/times_called_matchers/any_times_matcher.rb +18 -0
  65. data/lib/rr/times_called_matchers/at_least_matcher.rb +15 -0
  66. data/lib/rr/times_called_matchers/at_most_matcher.rb +23 -0
  67. data/lib/rr/times_called_matchers/integer_matcher.rb +19 -0
  68. data/lib/rr/times_called_matchers/never_matcher.rb +23 -0
  69. data/lib/rr/times_called_matchers/non_terminal.rb +27 -0
  70. data/lib/rr/times_called_matchers/proc_matcher.rb +11 -0
  71. data/lib/rr/times_called_matchers/range_matcher.rb +21 -0
  72. data/lib/rr/times_called_matchers/terminal.rb +20 -0
  73. data/lib/rr/times_called_matchers/times_called_matcher.rb +44 -0
  74. data/lib/rr/wildcard_matchers.rb +158 -0
  75. data/lib/rr/wildcard_matchers/anything.rb +18 -0
  76. data/lib/rr/wildcard_matchers/boolean.rb +23 -0
  77. data/lib/rr/wildcard_matchers/duck_type.rb +32 -0
  78. data/lib/rr/wildcard_matchers/hash_including.rb +29 -0
  79. data/lib/rr/wildcard_matchers/is_a.rb +25 -0
  80. data/lib/rr/wildcard_matchers/numeric.rb +13 -0
  81. data/lib/rr/wildcard_matchers/range.rb +7 -0
  82. data/lib/rr/wildcard_matchers/regexp.rb +7 -0
  83. data/lib/rr/wildcard_matchers/satisfy.rb +26 -0
  84. data/spec/api/any_instance_of/all_instances_of_spec.rb +12 -0
  85. data/spec/api/any_instance_of/any_instance_of_spec.rb +47 -0
  86. data/spec/api/any_instance_of/instance_of_spec.rb +12 -0
  87. data/spec/api/dont_allow/dont_allow_after_stub_spec.rb +14 -0
  88. data/spec/api/mock/mock_spec.rb +193 -0
  89. data/spec/api/proxy/proxy_spec.rb +86 -0
  90. data/spec/api/spy/spy_spec.rb +49 -0
  91. data/spec/api/strong/strong_spec.rb +87 -0
  92. data/spec/api/stub/stub_spec.rb +152 -0
  93. data/spec/core_spec_suite.rb +18 -0
  94. data/spec/environment_fixture_setup.rb +7 -0
  95. data/spec/minitest_spec_suite.rb +21 -0
  96. data/spec/proc_from_block_spec.rb +14 -0
  97. data/spec/rr/adapters/rr_methods_argument_matcher_spec.rb +67 -0
  98. data/spec/rr/adapters/rr_methods_creator_spec.rb +137 -0
  99. data/spec/rr/adapters/rr_methods_space_spec.rb +98 -0
  100. data/spec/rr/adapters/rr_methods_spec_helper.rb +7 -0
  101. data/spec/rr/adapters/rr_methods_times_matcher_spec.rb +13 -0
  102. data/spec/rr/double_definitions/child_double_definition_creator_spec.rb +112 -0
  103. data/spec/rr/double_definitions/double_definition_create_blank_slate_spec.rb +91 -0
  104. data/spec/rr/double_definitions/double_definition_create_spec.rb +443 -0
  105. data/spec/rr/double_injection/double_injection_spec.rb +546 -0
  106. data/spec/rr/double_injection/double_injection_verify_spec.rb +29 -0
  107. data/spec/rr/errors/rr_error_spec.rb +67 -0
  108. data/spec/rr/expectations/any_argument_expectation_spec.rb +47 -0
  109. data/spec/rr/expectations/anything_argument_equality_expectation_spec.rb +14 -0
  110. data/spec/rr/expectations/argument_equality_expectation_spec.rb +135 -0
  111. data/spec/rr/expectations/boolean_argument_equality_expectation_spec.rb +34 -0
  112. data/spec/rr/expectations/hash_including_argument_equality_expectation_spec.rb +82 -0
  113. data/spec/rr/expectations/hash_including_spec.rb +17 -0
  114. data/spec/rr/expectations/satisfy_argument_equality_expectation_spec.rb +59 -0
  115. data/spec/rr/expectations/satisfy_spec.rb +14 -0
  116. data/spec/rr/expectations/times_called_expectation/times_called_expectation_any_times_spec.rb +22 -0
  117. data/spec/rr/expectations/times_called_expectation/times_called_expectation_at_least_spec.rb +37 -0
  118. data/spec/rr/expectations/times_called_expectation/times_called_expectation_at_most_spec.rb +43 -0
  119. data/spec/rr/expectations/times_called_expectation/times_called_expectation_helper.rb +11 -0
  120. data/spec/rr/expectations/times_called_expectation/times_called_expectation_integer_spec.rb +58 -0
  121. data/spec/rr/expectations/times_called_expectation/times_called_expectation_proc_spec.rb +35 -0
  122. data/spec/rr/expectations/times_called_expectation/times_called_expectation_range_spec.rb +39 -0
  123. data/spec/rr/minitest/minitest_integration_test.rb +59 -0
  124. data/spec/rr/minitest/test_helper.rb +7 -0
  125. data/spec/rr/rspec/invocation_matcher_spec.rb +279 -0
  126. data/spec/rr/rspec/rspec_adapter_spec.rb +63 -0
  127. data/spec/rr/rspec/rspec_backtrace_tweaking_spec.rb +21 -0
  128. data/spec/rr/rspec/rspec_backtrace_tweaking_spec_fixture.rb +11 -0
  129. data/spec/rr/rspec/rspec_usage_spec.rb +86 -0
  130. data/spec/rr/space/hash_with_object_id_key_spec.rb +88 -0
  131. data/spec/rr/space/space_spec.rb +596 -0
  132. data/spec/rr/test_unit/test_helper.rb +7 -0
  133. data/spec/rr/test_unit/test_unit_backtrace_test.rb +36 -0
  134. data/spec/rr/test_unit/test_unit_integration_test.rb +59 -0
  135. data/spec/rr/times_called_matchers/any_times_matcher_spec.rb +47 -0
  136. data/spec/rr/times_called_matchers/at_least_matcher_spec.rb +55 -0
  137. data/spec/rr/times_called_matchers/at_most_matcher_spec.rb +70 -0
  138. data/spec/rr/times_called_matchers/integer_matcher_spec.rb +70 -0
  139. data/spec/rr/times_called_matchers/proc_matcher_spec.rb +55 -0
  140. data/spec/rr/times_called_matchers/range_matcher_spec.rb +76 -0
  141. data/spec/rr/times_called_matchers/times_called_matcher_spec.rb +118 -0
  142. data/spec/rr/wildcard_matchers/anything_spec.rb +24 -0
  143. data/spec/rr/wildcard_matchers/boolean_spec.rb +36 -0
  144. data/spec/rr/wildcard_matchers/duck_type_spec.rb +52 -0
  145. data/spec/rr/wildcard_matchers/is_a_spec.rb +32 -0
  146. data/spec/rr/wildcard_matchers/numeric_spec.rb +32 -0
  147. data/spec/rr/wildcard_matchers/range_spec.rb +35 -0
  148. data/spec/rr/wildcard_matchers/regexp_spec.rb +43 -0
  149. data/spec/rr_spec.rb +28 -0
  150. data/spec/rspec_spec_suite.rb +16 -0
  151. data/spec/spec_helper.rb +40 -0
  152. data/spec/spec_suite.rb +50 -0
  153. data/spec/spy_verification_spec.rb +129 -0
  154. data/spec/test_unit_spec_suite.rb +20 -0
  155. metadata +220 -0
@@ -0,0 +1,31 @@
1
+ module RR
2
+ module DoubleDefinitions
3
+ module Strategies
4
+ module Verification
5
+ # This method sets the Double to have a dont_allow strategy.
6
+ # A dont_allow strategy sets the default state of the Double
7
+ # to expect never to be called. The Double's expectations can be
8
+ # changed.
9
+ #
10
+ # The following example sets the expectation that subject.method_name
11
+ # will never be called with arg1 and arg2.
12
+ #
13
+ # do_not_allow(subject).method_name(arg1, arg2)
14
+ #
15
+ # dont_allow also supports a block sytnax.
16
+ # dont_allow(subject) do |m|
17
+ # m.method1 # Do not allow method1 with any arguments
18
+ # m.method2(arg1, arg2) # Do not allow method2 with arguments arg1 and arg2
19
+ # m.method3.with_no_args # Do not allow method3 with no arguments
20
+ # end
21
+ class DontAllow < VerificationStrategy
22
+ protected
23
+ def do_call
24
+ definition.never
25
+ permissive_argument
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,42 @@
1
+ module RR
2
+ module DoubleDefinitions
3
+ module Strategies
4
+ module Verification
5
+ # This method sets the Double to have a mock strategy. A mock strategy
6
+ # sets the default state of the Double to expect the method call
7
+ # with arguments exactly one time. The Double's expectations can be
8
+ # changed.
9
+ #
10
+ # This method can be chained with proxy.
11
+ # mock.proxy(subject).method_name_1
12
+ # or
13
+ # proxy.mock(subject).method_name_1
14
+ #
15
+ # When passed the subject, a DoubleDefinitionCreateBlankSlate is returned. Passing
16
+ # a method with arguments to the proxy will set up expectations that
17
+ # the a call to the subject's method with the arguments will happen,
18
+ # and return the prescribed value.
19
+ # mock(subject).method_name_1 {return_value_1}
20
+ # mock(subject).method_name_2(arg1, arg2) {return_value_2}
21
+ #
22
+ # When passed the subject and the method_name, this method returns
23
+ # a mock Double with the method already set.
24
+ #
25
+ # mock(subject, :method_name_1) {return_value_1}
26
+ # mock(subject, :method_name_2).with(arg1, arg2) {return_value_2}
27
+ #
28
+ # mock also takes a block for definitions.
29
+ # mock(subject) do
30
+ # method_name_1 {return_value_1}
31
+ # method_name_2(arg_1, arg_2) {return_value_2}
32
+ # end
33
+ class Mock < VerificationStrategy
34
+ protected
35
+ def do_call
36
+ definition.with(*args).once
37
+ end
38
+ end
39
+ end
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,43 @@
1
+ module RR
2
+ module DoubleDefinitions
3
+ module Strategies
4
+ module Verification
5
+ # This method sets the Double to have a stub strategy. A stub strategy
6
+ # sets the default state of the Double to expect the method call
7
+ # with any arguments any number of times. The Double's
8
+ # expectations can be changed.
9
+ #
10
+ # This method can be chained with proxy.
11
+ # stub.proxy(subject).method_name_1
12
+ # or
13
+ # proxy.stub(subject).method_name_1
14
+ #
15
+ # When passed the subject, a DoubleDefinitionCreateBlankSlate is returned. Passing
16
+ # a method with arguments to the proxy will set up expectations that
17
+ # the a call to the subject's method with the arguments will happen,
18
+ # and return the prescribed value.
19
+ # stub(subject).method_name_1 {return_value_1}
20
+ # stub(subject).method_name_2(arg_1, arg_2) {return_value_2}
21
+ #
22
+ # When passed the subject and the method_name, this method returns
23
+ # a stub Double with the method already set.
24
+ #
25
+ # mock(subject, :method_name_1) {return_value_1}
26
+ # mock(subject, :method_name_2).with(arg1, arg2) {return_value_2}
27
+ #
28
+ # stub also takes a block for definitions.
29
+ # stub(subject) do
30
+ # method_name_1 {return_value_1}
31
+ # method_name_2(arg_1, arg_2) {return_value_2}
32
+ # end
33
+ class Stub < VerificationStrategy
34
+ protected
35
+ def do_call
36
+ definition.any_number_of_times
37
+ permissive_argument
38
+ end
39
+ end
40
+ end
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,10 @@
1
+ module RR
2
+ module DoubleDefinitions
3
+ module Strategies
4
+ module Verification
5
+ class VerificationStrategy < Strategy
6
+ end
7
+ end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,42 @@
1
+ module RR
2
+ class DoubleMatches
3
+ attr_reader :matching_doubles,
4
+ :exact_terminal_doubles_to_attempt,
5
+ :exact_non_terminal_doubles_to_attempt,
6
+ :wildcard_terminal_doubles_to_attempt,
7
+ :wildcard_non_terminal_doubles_to_attempt
8
+ def initialize(doubles) #:nodoc:
9
+ @doubles = doubles
10
+ @matching_doubles = []
11
+ @exact_terminal_doubles_to_attempt = []
12
+ @exact_non_terminal_doubles_to_attempt = []
13
+ @wildcard_terminal_doubles_to_attempt = []
14
+ @wildcard_non_terminal_doubles_to_attempt = []
15
+ end
16
+
17
+ def find_all_matches(args)
18
+ @doubles.each do |double|
19
+ if double.exact_match?(*args)
20
+ matching_doubles << double
21
+ if double.attempt?
22
+ if double.terminal?
23
+ exact_terminal_doubles_to_attempt << double
24
+ else
25
+ exact_non_terminal_doubles_to_attempt << double
26
+ end
27
+ end
28
+ elsif double.wildcard_match?(*args)
29
+ matching_doubles << double
30
+ if double.attempt?
31
+ if double.terminal?
32
+ wildcard_terminal_doubles_to_attempt << double
33
+ else
34
+ wildcard_non_terminal_doubles_to_attempt << double
35
+ end
36
+ end
37
+ end
38
+ end
39
+ self
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,6 @@
1
+ module RR
2
+ module Errors
3
+ class ArgumentEqualityError < RRError
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ module RR
2
+ module Errors
3
+ class DoubleDefinitionError < RRError
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ module RR
2
+ module Errors
3
+ class DoubleNotFoundError < RRError
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ module RR
2
+ module Errors
3
+ class DoubleOrderError < RRError
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,20 @@
1
+ module RR
2
+ module Errors
3
+ BACKTRACE_IDENTIFIER = Regexp.new("/lib/rr")
4
+
5
+ class RRError < RuntimeError
6
+ attr_writer :backtrace
7
+ def backtrace
8
+ @backtrace ||= super
9
+ original_backtrace = @backtrace
10
+ return original_backtrace unless RR.trim_backtrace
11
+ return original_backtrace unless original_backtrace.respond_to?(:each)
12
+ new_backtrace = []
13
+ original_backtrace.each do |line|
14
+ new_backtrace << line unless line =~ BACKTRACE_IDENTIFIER
15
+ end
16
+ new_backtrace
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,8 @@
1
+ module RR
2
+ module Errors
3
+ module SpyVerificationErrors
4
+ class DoubleInjectionNotFoundError < SpyVerificationError
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module RR
2
+ module Errors
3
+ module SpyVerificationErrors
4
+ class InvocationCountError < SpyVerificationError
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ module RR
2
+ module Errors
3
+ module SpyVerificationErrors
4
+ class SpyVerificationError < RRError
5
+ end
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,6 @@
1
+ module RR
2
+ module Errors
3
+ class SubjectDoesNotImplementMethodError < RRError
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ module RR
2
+ module Errors
3
+ class SubjectHasDifferentArityError < RRError
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ module RR
2
+ module Errors
3
+ class TimesCalledError < RRError
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,21 @@
1
+ module RR
2
+ module Expectations
3
+ class AnyArgumentExpectation < ArgumentEqualityExpectation #:nodoc:
4
+ def initialize
5
+ super
6
+ end
7
+
8
+ def exact_match?(*arguments)
9
+ false
10
+ end
11
+
12
+ def wildcard_match?(*arguments)
13
+ true
14
+ end
15
+
16
+ def ==(other)
17
+ other.is_a?(self.class)
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,41 @@
1
+ module RR
2
+ module Expectations
3
+ class ArgumentEqualityExpectation #:nodoc:
4
+ attr_reader :expected_arguments
5
+
6
+ def initialize(*expected_arguments)
7
+ @expected_arguments = expected_arguments
8
+ end
9
+
10
+ def exact_match?(*arguments)
11
+ return false unless arguments.length == expected_arguments.length
12
+ arguments.each_with_index do |arg, index|
13
+ return false unless equality_match(expected_arguments[index], arg)
14
+ end
15
+ true
16
+ end
17
+
18
+ def wildcard_match?(*arguments)
19
+ return false unless arguments.length == expected_arguments.length
20
+ arguments.each_with_index do |arg, index|
21
+ expected_argument = expected_arguments[index]
22
+ if expected_argument.respond_to?(:wildcard_match?)
23
+ return false unless expected_argument.wildcard_match?(arg)
24
+ else
25
+ return false unless equality_match(expected_argument, arg)
26
+ end
27
+ end
28
+ true
29
+ end
30
+
31
+ def ==(other)
32
+ expected_arguments == other.expected_arguments
33
+ end
34
+
35
+ protected
36
+ def equality_match(arg1, arg2)
37
+ arg1.respond_to?(:'__rr__original_==') ? arg1.__send__(:'__rr__original_==', arg2) : arg1 == arg2
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,57 @@
1
+ module RR
2
+ module Expectations
3
+ class TimesCalledExpectation #:nodoc:
4
+ attr_reader :double, :times_called
5
+
6
+ def initialize(double)
7
+ @double = double
8
+ @times_called = 0
9
+ @verify_backtrace = caller[1..-1]
10
+ end
11
+
12
+ def attempt?
13
+ times_matcher.attempt?(@times_called)
14
+ end
15
+
16
+ def attempt
17
+ @times_called += 1
18
+ verify_input_error unless times_matcher.possible_match?(@times_called)
19
+ return
20
+ end
21
+
22
+ def verify
23
+ return false unless times_matcher.is_a?(TimesCalledMatchers::TimesCalledMatcher)
24
+ return times_matcher.matches?(@times_called)
25
+ end
26
+
27
+ def verify!
28
+ unless verify
29
+ if @verify_backtrace
30
+ error = Errors::TimesCalledError.new(error_message)
31
+ error.backtrace = @verify_backtrace
32
+ raise error
33
+ else
34
+ raise Errors::TimesCalledError, error_message
35
+ end
36
+ end
37
+ end
38
+
39
+ def terminal?
40
+ times_matcher.terminal?
41
+ end
42
+
43
+ protected
44
+ def times_matcher
45
+ double.definition.times_matcher
46
+ end
47
+
48
+ def verify_input_error
49
+ raise Errors::TimesCalledError, error_message
50
+ end
51
+
52
+ def error_message
53
+ "#{double.formatted_name}\n#{times_matcher.error_message(@times_called)}"
54
+ end
55
+ end
56
+ end
57
+ end
@@ -0,0 +1,46 @@
1
+ module RR
2
+ # TODO: Refactor to a side-effect-free strategy.
3
+ class HashWithObjectIdKey < ::Hash #:nodoc:
4
+ def initialize
5
+ @keys = {}
6
+ super
7
+ end
8
+
9
+ alias_method :get_with_object_id, :[]
10
+
11
+ def [](key)
12
+ @keys[key.__id__] = key
13
+ super(key.__id__)
14
+ end
15
+
16
+ def has_key?(key)
17
+ super(key.__id__)
18
+ end
19
+
20
+ alias_method :set_with_object_id, :[]=
21
+
22
+ def []=(key, value)
23
+ @keys[key.__id__] = key
24
+ super(key.__id__, value)
25
+ end
26
+
27
+ def each
28
+ super do |object_id, value|
29
+ yield @keys[object_id], value
30
+ end
31
+ end
32
+
33
+ def delete(key)
34
+ @keys.delete(key.__id__)
35
+ super(key.__id__)
36
+ end
37
+
38
+ def keys
39
+ @keys.values
40
+ end
41
+
42
+ def include?(key)
43
+ super(key.__id__)
44
+ end
45
+ end
46
+ end