File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
lib/active_support/testing Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1+ * Calling test methods with ` with_info_handler ` method to allow minitest-hooks
2+ plugin to work.
3+
4+ * Mauri Mustonen*
5+
16* The Zeitwerk compatibility interface for ` ActiveSupport::Dependencies ` no
27 longer implements ` autoloaded_constants ` or ` autoloaded? ` (undocumented,
38 anyway). Experience shows introspection does not have many use cases, and
Original file line number Diff line number Diff line change @@ -79,7 +79,9 @@ def start
7979 klass = job [ 0 ]
8080 method = job [ 1 ]
8181 reporter = job [ 2 ]
82- result = Minitest . run_one_method ( klass , method )
82+ result = klass . with_info_handler reporter do
83+ Minitest . run_one_method ( klass , method )
84+ end
8385
8486 begin
8587 queue . record ( reporter , result )
You can’t perform that action at this time.
0 commit comments