aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/test/test_command.rb
blob: dce85cf12dc863f155c97b315234012a363a8c2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require "rails/command"
require "rails/test_unit/minitest_plugin"

module Rails
  module Command
    class TestCommand < Base # :nodoc:
      no_commands do
        def help
          perform # Hand over help printing to minitest.
        end
      end

      def perform(*)
        $LOAD_PATH << Rails::Command.root.join("test").to_s

        Minitest.run_via = :rails

        require "active_support/testing/autorun"
      end
    end
  end
end