Revert "Include Caching module for ActionController::API"

This commit is contained in:
Rafael França 2019-04-22 17:20:48 -04:00 committed by GitHub
parent 216ef01d14
commit b62b038d9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 14 deletions

@ -117,7 +117,6 @@ def self.without_modules(*modules)
ApiRendering,
Renderers::All,
ConditionalGet,
Caching,
BasicImplicitRender,
StrongParameters,

@ -2216,19 +2216,6 @@ class Post < ActiveRecord::Base
assert_equal :default, Rails.configuration.debug_exception_response_format
end
test "action_controller.cache_store works for api_only app as well" do
add_to_config <<-RUBY
config.api_only = true
config.action_controller.cache_store = :memory_store
RUBY
app "development"
api_controller = Class.new(ActionController::API)
assert_equal(api_controller.cache_store.class, ActiveSupport::Cache::MemoryStore)
end
test "controller force_ssl declaration can be used even if session_store is disabled" do
make_basic_app do |application|
application.config.session_store :disabled