class Rails::Command::TestCommand

Public Instance Methods

help() click to toggle source
# File lib/rails/commands/test/test_command.rb, line 24
def help
  perform
end
perform(*args) click to toggle source
# File lib/rails/commands/test/test_command.rb, line 29
def perform(*args)
  $LOAD_PATH << Rails::Command.root.join("test").to_s

  args.unshift("--exclude=\\Atest_helper\\.rb\\z")
  args.unshift("--default-test-path=test")
  exit(Test::Unit::AutoRunner.run(true, nil, args))
end