mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-22 22:06:50 +00:00
The `assert_serializer` test helper was added in 0.9.0.apha1[1],
and was not included in 0.10.
This patch brings back the `assert_serializer` test helper. This is the last
revision[2] that has the helper. The original helper was used as base.
[1]: https://github.com/rails-api/active_model_serializers/pull/596
[2]: 610aeb2e92
- Create the AssertSerializer
- Use the Test namespace
- Make the tests pass on the Rails master
- Rails 5 does not include `assert_template` but we need this on the tests of
the helper.
- This add the `rails-controller-testing` to keep support on `assert_template`.
- Only load test helpers in the test environment
28 lines
844 B
Ruby
28 lines
844 B
Ruby
require 'rails/railtie'
|
|
|
|
module ActiveModel
|
|
class Railtie < Rails::Railtie
|
|
initializer 'active_model_serializers.logger' do
|
|
ActiveSupport.on_load(:active_model_serializers) do
|
|
self.logger = ActionController::Base.logger
|
|
end
|
|
end
|
|
|
|
initializer 'active_model_serializers.caching' do
|
|
ActiveSupport.on_load(:action_controller) do
|
|
ActiveModelSerializers.config.cache_store = ActionController::Base.cache_store
|
|
ActiveModelSerializers.config.perform_caching = Rails.configuration.action_controller.perform_caching
|
|
end
|
|
end
|
|
|
|
initializer 'generators' do |app|
|
|
app.load_generators
|
|
require 'generators/serializer/resource_override'
|
|
end
|
|
|
|
if Rails.env.test?
|
|
ActionController::TestCase.send(:include, ActiveModelSerializers::Test::Serializer)
|
|
end
|
|
end
|
|
end
|