Adds with_engines_test to rails command.
rails with_engines_testShortcuts are available (further installation step required)
rails test_all
rails taAdd this line to your application's Gemfile:
gem 'run_tests_with_engines'And then execute:
$ bundleOr install it yourself as:
$ gem install run_tests_with_enginesTo allow the usage of further shortcuts replace require 'rails/commands' by:
# keep attention on rails upgarde
# to enable running tests with engines the "run_tests_with_engines" gem is used
CUSTOM_COMMANDS = Gem.loaded_specs['run_tests_with_engines'].full_gem_path
require (CUSTOM_COMMANDS + '/lib/rails/commands')Contribution directions go here.
The gem is available as open source under the terms of the MIT License.