diff options
author | Vít Ondruch <vondruch@redhat.com> | 2016-07-07 12:26:56 +0200 |
---|---|---|
committer | Vít Ondruch <vondruch@redhat.com> | 2016-07-07 12:27:01 +0200 |
commit | 34e0eafb4bd546a6ac4957d8718cfdd4627c7c89 (patch) | |
tree | 5f826bc9a69932afa72450138d8f7df1ddd4dc32 /activesupport/test | |
parent | 9bdf08c5a57d0411db866124eca4deba5097c30a (diff) | |
download | rails-34e0eafb4bd546a6ac4957d8718cfdd4627c7c89.tar.gz rails-34e0eafb4bd546a6ac4957d8718cfdd4627c7c89.tar.bz2 rails-34e0eafb4bd546a6ac4957d8718cfdd4627c7c89.zip |
Pathname might not be always initialized.
Require 'pathname' explicitly
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/caching_test.rb | 2 |
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 |