1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

'minitest/parallel_each' might not always be available

This commit is contained in:
Akira Matsuda + Koichi Sasada 2013-01-29 20:19:46 +09:00 committed by Akira Matsuda
parent 29000a7dbd
commit eba172fb76

View file

@ -1,5 +1,8 @@
require 'rbconfig'
require 'minitest/parallel_each'
begin
require 'minitest/parallel_each'
rescue LoadError
end
module ActiveSupport
module Testing