method

rake_run

rake_run(argv = [])
public

No documentation available.

# File railties/lib/rails/test_unit/runner.rb, line 33
        def rake_run(argv = [])
          # Ensure the tests run during the Rake Task action, not when the process exits
          success = system("rails", "test", *argv, *Shellwords.split(ENV["TESTOPTS"] || ""))
          success || exit(false)
        end