Flowdock
method

_run_suites

Importance_0
v1_9_3_392 - Show latest stable - 0 notes - Class: Runner
_run_suites(suites, type) public

No documentation

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

Hide source
# File lib/test/unit.rb, line 557
      def _run_suites suites, type
        @interrupt = nil
        result = []
        if @options[:parallel]
          _run_parallel suites, type, result
        else
          suites.each {|suite|
            begin
              result << _run_suite(suite, type)
            rescue Interrupt => e
              @interrupt = e
              break
            end
          }
        end
        report.reject!{|r| r.start_with? "Skipped:" } if @options[:hide_skip]
        result
      end
Register or log in to add new notes.