Class: Rails::Command::TestCommand

Inherits:
Base
  • Object
show all
Defined in:
lib/rails/commands/test/test_command.rb

Overview

:nodoc:

Instance Method Summary collapse

Methods inherited from Base

banner, base_name, command_name, default_command_root, desc, engine?, executable, #help, hide_command!, inherited, namespace, perform, printing_commands, usage_path

Methods included from Actions

#load_generators, #load_tasks, #require_application_and_environment!, #set_application_directory!

Instance Method Details

#performObject



13
14
15
16
17
18
19
# File 'lib/rails/commands/test/test_command.rb', line 13

def perform(*)
  $LOAD_PATH << Rails::Command.root.join("test")

  Minitest.run_via = :rails

  require "active_support/testing/autorun"
end