Class: ActiveSupport::Testing::SimpleStubs
- Defined in:
- lib/active_support/testing/time_helpers.rb
Overview
Manages stubs for TimeHelpers
Defined Under Namespace
Classes: Stub
Instance Method Summary collapse
-
#initialize ⇒ SimpleStubs
constructor
A new instance of SimpleStubs.
-
#stub_object(object, method_name, &block) ⇒ Object
Stubs object.method_name with the given block If the method is already stubbed, remove that stub so that removing this stub will restore the original implementation.
-
#stubbed? ⇒ Boolean
Returns true if any stubs are set, false if there are none.
-
#stubbing(object, method_name) ⇒ Object
Returns the Stub for object#method_name (nil if it is not stubbed).
-
#unstub_all! ⇒ Object
Remove all object-method stubs held by this instance.
Constructor Details
#initialize ⇒ SimpleStubs
Returns a new instance of SimpleStubs.
12 13 14 |
# File 'lib/active_support/testing/time_helpers.rb', line 12 def initialize @stubs = Hash.new { |h, k| h[k] = {} } end |
Instance Method Details
#stub_object(object, method_name, &block) ⇒ Object
Stubs object.method_name with the given block If the method is already stubbed, remove that stub so that removing this stub will restore the original implementation.
Time.current # => Sat, 09 Nov 2013 15:34:49 EST -05:00
target = Time.zone.local(2004, 11, 24, 1, 4, 44)
simple_stubs.stub_object(Time, :now) { at(target.to_i) }
Time.current # => Wed, 24 Nov 2004 01:04:44 EST -05:00
23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/active_support/testing/time_helpers.rb', line 23 def stub_object(object, method_name, &block) if stub = stubbing(object, method_name) unstub_object(stub) end new_name = "__simple_stub__#{method_name}__#{object_id}" @stubs[object.object_id][method_name] = Stub.new(object, method_name, new_name) object.singleton_class.alias_method new_name, method_name object.define_singleton_method(method_name, &block) end |
#stubbed? ⇒ Boolean
Returns true if any stubs are set, false if there are none
53 54 55 |
# File 'lib/active_support/testing/time_helpers.rb', line 53 def stubbed? !@stubs.empty? end |
#stubbing(object, method_name) ⇒ Object
Returns the Stub for object#method_name (nil if it is not stubbed)
48 49 50 |
# File 'lib/active_support/testing/time_helpers.rb', line 48 def stubbing(object, method_name) @stubs[object.object_id][method_name] end |
#unstub_all! ⇒ Object
Remove all object-method stubs held by this instance
37 38 39 40 41 42 43 44 |
# File 'lib/active_support/testing/time_helpers.rb', line 37 def unstub_all! @stubs.each_value do |object_stubs| object_stubs.each_value do |stub| unstub_object(stub) end end @stubs.clear end |