diff options
author | Akira Matsuda <ronnie@dio.jp> | 2018-10-20 14:35:03 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2018-10-30 10:17:09 +0900 |
commit | b36c3956d6764d981fec4890b8d6371ad474facd (patch) | |
tree | a6f7eb40089d8fbff58930635a5e595059094259 /activesupport | |
parent | d7f48c9c39befaf23ccd63e0248a3bd5bf295ee5 (diff) | |
download | rails-b36c3956d6764d981fec4890b8d6371ad474facd.tar.gz rails-b36c3956d6764d981fec4890b8d6371ad474facd.tar.bz2 rails-b36c3956d6764d981fec4890b8d6371ad474facd.zip |
Missing require "active_support/concern"
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/testing/file_fixtures.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/testing/file_fixtures.rb b/activesupport/lib/active_support/testing/file_fixtures.rb index ad923d1aab..4eb7a88576 100644 --- a/activesupport/lib/active_support/testing/file_fixtures.rb +++ b/activesupport/lib/active_support/testing/file_fixtures.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true +require "active_support/concern" + module ActiveSupport module Testing # Adds simple access to sample files called file fixtures. |