aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/caching_test.rb
diff options
context:
space:
mode:
authorVít Ondruch <vondruch@redhat.com>2016-07-07 12:26:56 +0200
committerVít Ondruch <vondruch@redhat.com>2016-07-07 12:27:01 +0200
commit34e0eafb4bd546a6ac4957d8718cfdd4627c7c89 (patch)
tree5f826bc9a69932afa72450138d8f7df1ddd4dc32 /activesupport/test/caching_test.rb
parent9bdf08c5a57d0411db866124eca4deba5097c30a (diff)
downloadrails-34e0eafb4bd546a6ac4957d8718cfdd4627c7c89.tar.gz
rails-34e0eafb4bd546a6ac4957d8718cfdd4627c7c89.tar.bz2
rails-34e0eafb4bd546a6ac4957d8718cfdd4627c7c89.zip
Pathname might not be always initialized.
Require 'pathname' explicitly
Diffstat (limited to 'activesupport/test/caching_test.rb')
-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