module Minitest
def self.plugin_rails_options(opts, options)
Experimental RBS support (using type sampling data from the type_fusion
project).
def self.plugin_rails_options: (OptionParser opts, Hash options) -> true
This signature was generated using 2 samples from 1 application.
def self.plugin_rails_options(opts, options) ::Rails::TestUnit::Runner.attach_before_load_options(opts) opts.on("-b", "--backtrace", "Show the complete backtrace") do options[:full_backtrace] = true end opts.on("-d", "--defer-output", "Output test failures and errors after the test run") do options[:output_inline] = false end opts.on("-f", "--fail-fast", "Abort test run on first failure or error") do options[:fail_fast] = true end opts.on("-c", "--[no-]color", "Enable color in the output") do |value| options[:color] = value end options[:color] = true options[:output_inline] = true end