mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 22:36:50 +00:00
35 lines
1.0 KiB
Ruby
35 lines
1.0 KiB
Ruby
require 'test_helper'
|
|
|
|
module ActiveModel
|
|
class Serializer
|
|
class OptionsTest < Minitest::Test
|
|
def setup
|
|
@serializer = ProfileSerializer.new(nil, context: {foo: :bar})
|
|
end
|
|
|
|
def test_custom_options_are_accessible_from_serializer
|
|
assert_equal({foo: :bar}, @serializer.context)
|
|
end
|
|
end
|
|
|
|
class SerializationOptionsTest < Minitest::Test
|
|
def setup
|
|
@profile = Profile.new({ name: 'Name 1', description: 'Description 1', comments: 'Comments 1' })
|
|
@profile_serializer = ProfileSerializer.new(@profile)
|
|
@profile_serializer.instance_eval do
|
|
def description
|
|
serialization_options[:force_the_description]
|
|
end
|
|
end
|
|
end
|
|
|
|
def test_filtered_attributes_serialization
|
|
forced_description = "This is a test"
|
|
assert_equal({
|
|
'profile' => { name: 'Name 1', description: forced_description }
|
|
}, @profile_serializer.as_json(force_the_description: forced_description))
|
|
end
|
|
end
|
|
end
|
|
end
|