Sha256: d3f33b63613331fd5841d80eb33c878d3abbd7a39683b124de1f76925470a12c
Contents?: true
Size: 443 Bytes
Versions: 4
Compression:
Stored size: 443 Bytes
Contents
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") Minitest.run_via = :rails require "active_support/testing/autorun" end end end end
Version data entries
4 entries across 4 versions & 1 rubygems