diff options
author | Xavier Noria <fxn@hashref.com> | 2012-10-09 18:27:02 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-10-09 18:27:30 +0200 |
commit | 9492cb025735c6e90d114f5681384c5119049051 (patch) | |
tree | a1d18cc26a0a340f8670a45802b701b702379918 /activesupport/test | |
parent | bf2c43983cde2482106a93786a05d3030c08f074 (diff) | |
download | rails-9492cb025735c6e90d114f5681384c5119049051.tar.gz rails-9492cb025735c6e90d114f5681384c5119049051.tar.bz2 rails-9492cb025735c6e90d114f5681384c5119049051.zip |
adds missing require
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/core_ext/hash_ext_test.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/hash_ext_test.rb b/activesupport/test/core_ext/hash_ext_test.rb index 53ea2aad16..fbe98aed06 100644 --- a/activesupport/test/core_ext/hash_ext_test.rb +++ b/activesupport/test/core_ext/hash_ext_test.rb @@ -5,6 +5,7 @@ require 'active_support/core_ext/string/access' require 'active_support/ordered_hash' require 'active_support/core_ext/object/deep_dup' require 'active_support/inflections' +require 'active_support/core_ext/object/to_param' class HashExtTest < ActiveSupport::TestCase class IndifferentHash < HashWithIndifferentAccess |