Flowdock
method

run_setup_hooks

Importance_0
v1_9_3_125 - Show latest stable - 0 notes - Class: TestCase
run_setup_hooks() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/minitest/unit.rb, line 1094
      def run_setup_hooks # :nodoc:
        self.class.setup_hooks.each do |hook|
          if hook.respond_to?(:arity) && hook.arity == 1
            hook.call(self)
          else
            hook.call
          end
        end
      end
Register or log in to add new notes.