Class: ActiveSupport::Testing::SimpleStubs

Inherits:
Object
  • Object
show all
Defined in:
lib/active_support/testing/time_helpers.rb

Overview

:nodoc:

Defined Under Namespace

Classes: Stub

Instance Method Summary collapse

Constructor Details

#initializeSimpleStubs

Returns a new instance of SimpleStubs.



10
11
12
# File 'lib/active_support/testing/time_helpers.rb', line 10

def initialize
  @stubs = Concurrent::Map.new { |h, k| h[k] = {} }
end

Instance Method Details

#stub_object(object, method_name, &block) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/active_support/testing/time_helpers.rb', line 14

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



36
37
38
# File 'lib/active_support/testing/time_helpers.rb', line 36

def stubbing(object, method_name)
  @stubs[object.object_id][method_name]
end

#unstub_all!Object



27
28
29
30
31
32
33
34
# File 'lib/active_support/testing/time_helpers.rb', line 27

def unstub_all!
  @stubs.each_value do |object_stubs|
    object_stubs.each_value do |stub|
      unstub_object(stub)
    end
  end
  @stubs.clear
end