1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activesupport/test/cache
George Claghorn 974ce9c333
Fix configuring a cache store with ActiveSupport::OrderedOptions
9845cd6 broke configuring a cache store like so:

    config.cache_store = :redis_cache_store, config_for("redis/cache")

Rails::Application#config_for returns an ActiveSupport::OrderedOptions. By default, the Array#extract_options! core extension won't extract instances of Hash subclasses. Add ActiveSupport::OrderedOptions#extractable_options? and have it return true to fix.
2019-11-08 17:32:55 -05:00
..
behaviors
stores
behaviors.rb
cache_entry_test.rb
cache_key_test.rb
cache_store_logger_test.rb
cache_store_namespace_test.rb
cache_store_setting_test.rb Fix configuring a cache store with ActiveSupport::OrderedOptions 2019-11-08 17:32:55 -05:00
local_cache_middleware_test.rb