class Rails::Command::TestCommand
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/rails/commands/test/test_command.rbs class Rails::Command::TestCommand < Rails::Command::Base def perform: (String command, Array[] args, Hash config, *unused *) -> false? end
:nodoc:
def help
def help say "Usage: #{Rails::TestUnitReporter.executable} [options] [files or directories]" say "" say "You can run a single test by appending a line number to a filename:" say "" say " #{Rails::TestUnitReporter.executable} test/models/user_test.rb:27" say "" say "You can run multiple files and directories at the same time:" say "" say " #{Rails::TestUnitReporter.executable} test/controllers test/integration/login_test.rb" say "" say "By default test failures and errors are reported inline during a run." say "" Minitest.run(%w(--help)) end
def perform(*)
Experimental RBS support (using type sampling data from the type_fusion
project).
def perform: (String command, args, current_command | Thor::Command config, *unused *) -> false?
This signature was generated using 5 samples from 1 application.
def perform(*) $LOAD_PATH << Rails::Command.root.join("test").to_s Rails::TestUnit::Runner.parse_options(args) Rails::TestUnit::Runner.run(args) end