aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-07-07 11:26:21 -0300
committerGitHub <noreply@github.com>2016-07-07 11:26:21 -0300
commit3d716b9e66e334c113c98fb3fc4bcf8a945b93a1 (patch)
treef9a9e922f15f2617444a870c2987e41f44840e15
parent19ff64d8f46d21ef277ea5b593de16e903095ba0 (diff)
parent34e0eafb4bd546a6ac4957d8718cfdd4627c7c89 (diff)
downloadrails-3d716b9e66e334c113c98fb3fc4bcf8a945b93a1.tar.gz
rails-3d716b9e66e334c113c98fb3fc4bcf8a945b93a1.tar.bz2
rails-3d716b9e66e334c113c98fb3fc4bcf8a945b93a1.zip
Merge pull request #25736 from voxik/file-store-test-require-pathname
Pathname might not be always initialized.
-rw-r--r--activesupport/test/caching_test.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb
index ec7d028d7e..8002c14539 100644
--- a/activesupport/test/caching_test.rb
+++ b/activesupport/test/caching_test.rb
@@ -3,6 +3,8 @@ require 'abstract_unit'
require 'active_support/cache'
require 'dependencies_test_helpers'
+require 'pathname'
+
module ActiveSupport
module Cache
module Strategy