aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/test.rb
blob: cc0cc3d65a0a922493c25922fc9ed295bcbd43a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
require "rails/test_unit/minitest_plugin"

if defined?(ENGINE_ROOT)
  $LOAD_PATH << File.expand_path("test", ENGINE_ROOT)
else
  $LOAD_PATH << File.expand_path("../../test", APP_PATH)
end

exit Minitest.run(ARGV)