method

unstub_all!

unstub_all!()
public

No documentation available.

# File activesupport/lib/active_support/testing/time_helpers.rb, line 29
      def unstub_all!
        @stubs.each_value do |object_stubs|
          object_stubs.each_value do |stub|
            unstub_object(stub)
          end
        end
        @stubs.clear
      end