Class: Rails::Command::TestCommand
- 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
#perform ⇒ Object
34 35 36 37 38 39 |
# File 'lib/rails/commands/test/test_command.rb', line 34 def perform(*) $LOAD_PATH << Rails::Command.root.join("test").to_s Rails::TestUnit::Runner.(ARGV) Rails::TestUnit::Runner.run(ARGV) end |