Class: ActiveSupport::Testing::SimpleStubs
- Defined in:
- lib/active_support/testing/time_helpers.rb
Overview
:nodoc:
Defined Under Namespace
Classes: Stub
Instance Method Summary collapse
-
#initialize ⇒ SimpleStubs
constructor
A new instance of SimpleStubs.
- #stub_object(object, method_name, &block) ⇒ Object
- #stubbing(object, method_name) ⇒ Object
- #unstub_all! ⇒ Object
Constructor Details
#initialize ⇒ SimpleStubs
Returns a new instance of SimpleStubs.
13 14 15 |
# File 'lib/active_support/testing/time_helpers.rb', line 13 def initialize @stubs = Concurrent::Map.new { |h, k| h[k] = {} } end |
Instance Method Details
#stub_object(object, method_name, &block) ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/active_support/testing/time_helpers.rb', line 17 def stub_object(object, method_name, &block) if stub = stubbing(object, method_name) unstub_object(stub) end new_name = "__simple_stub__#{method_name}" @stubs[object.object_id][method_name] = Stub.new(object, method_name, new_name) object.singleton_class.send :alias_method, new_name, method_name object.define_singleton_method(method_name, &block) end |
#stubbing(object, method_name) ⇒ Object
39 40 41 |
# File 'lib/active_support/testing/time_helpers.rb', line 39 def stubbing(object, method_name) @stubs[object.object_id][method_name] end |
#unstub_all! ⇒ Object
30 31 32 33 34 35 36 37 |
# File 'lib/active_support/testing/time_helpers.rb', line 30 def unstub_all! @stubs.each_value do |object_stubs| object_stubs.each_value do |stub| unstub_object(stub) end end @stubs.clear end |