2015-03-21 08:15:56 -04:00
|
|
|
require "active_support/core_ext/module/attribute_accessors"
|
2015-01-23 21:26:58 -05:00
|
|
|
require "rails/test_unit/reporter"
|
2015-03-21 08:15:56 -04:00
|
|
|
require "rails/test_unit/test_requirer"
|
2015-01-23 21:26:58 -05:00
|
|
|
|
2015-03-21 08:15:56 -04:00
|
|
|
module Minitest
|
|
|
|
def self.plugin_rails_options(opts, options)
|
|
|
|
opts.separator ""
|
|
|
|
opts.separator "Usage: bin/rails test [options] [files or directories]"
|
|
|
|
opts.separator "You can run a single test by appending a line number to a filename:"
|
|
|
|
opts.separator ""
|
|
|
|
opts.separator " bin/rails test test/models/user_test.rb:27"
|
|
|
|
opts.separator ""
|
|
|
|
opts.separator "You can run multiple files and directories at the same time:"
|
|
|
|
opts.separator ""
|
|
|
|
opts.separator " bin/rails test test/controllers test/integration/login_test.rb"
|
|
|
|
opts.separator ""
|
|
|
|
|
|
|
|
opts.separator "Rails options:"
|
|
|
|
opts.on("-e", "--environment [ENV]",
|
|
|
|
"Run tests in the ENV environment") do |env|
|
|
|
|
options[:environment] = env.strip
|
|
|
|
end
|
|
|
|
|
|
|
|
opts.on("-b", "--backtrace",
|
|
|
|
"Show the complete backtrace") do
|
|
|
|
options[:full_backtrace] = true
|
|
|
|
end
|
|
|
|
|
|
|
|
options[:patterns] = opts.order!
|
2015-01-23 21:26:58 -05:00
|
|
|
end
|
|
|
|
|
2015-03-21 08:15:56 -04:00
|
|
|
def self.plugin_rails_init(options)
|
|
|
|
self.run_with_rails_extension = true
|
|
|
|
|
|
|
|
ENV["RAILS_ENV"] = options[:environment] || "test"
|
|
|
|
|
2015-07-01 00:56:14 -04:00
|
|
|
::Rails::TestRequirer.require_files options[:patterns] unless run_with_autorun
|
2015-03-21 08:15:56 -04:00
|
|
|
|
|
|
|
unless options[:full_backtrace] || ENV["BACKTRACE"]
|
|
|
|
# Plugin can run without Rails loaded, check before filtering.
|
2015-07-01 00:56:14 -04:00
|
|
|
Minitest.backtrace_filter = ::Rails.backtrace_cleaner if ::Rails.respond_to?(:backtrace_cleaner)
|
2015-03-21 08:15:56 -04:00
|
|
|
end
|
|
|
|
|
2015-07-01 00:56:14 -04:00
|
|
|
self.reporter << ::Rails::TestUnitReporter.new(options[:io], options)
|
2015-01-23 21:26:58 -05:00
|
|
|
end
|
2015-03-21 08:15:56 -04:00
|
|
|
|
|
|
|
mattr_accessor(:run_with_autorun) { false }
|
|
|
|
mattr_accessor(:run_with_rails_extension) { false }
|
2015-01-23 21:26:58 -05:00
|
|
|
end
|
2015-03-21 08:15:56 -04:00
|
|
|
|
2015-08-03 01:11:49 -04:00
|
|
|
Minitest.load_plugins
|
2015-01-23 21:26:58 -05:00
|
|
|
Minitest.extensions << 'rails'
|