mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
54d84cbb77
This adds a script `bin/test` to most Rails framework components. The script uses the rails minitest plugin to augment the runner. See https://github.com/rails/rails/pull/19571 for details about the plugin. I did not yet add `bin/test` for activerecord, activejob and railties. These components rely on specific setup performed in the rake-tasks.
3 lines
132 B
Ruby
Executable file
3 lines
132 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
COMPONENT_ROOT = File.expand_path("../../", __FILE__)
|
|
require File.expand_path("../tools/test", COMPONENT_ROOT)
|