mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-25 15:23:06 +00:00
Array serializer pass except and only options to item serializers
This commit is contained in:
18
test/unit/active_model/array_serializer/except_test.rb
Normal file
18
test/unit/active_model/array_serializer/except_test.rb
Normal file
@@ -0,0 +1,18 @@
|
||||
require 'test_helper'
|
||||
|
||||
module ActiveModel
|
||||
class ArraySerializer
|
||||
class ExceptTest < Minitest::Test
|
||||
def test_array_serializer_pass_except_to_items_serializers
|
||||
array = [Profile.new({ name: 'Name 1', description: 'Description 1', comments: 'Comments 1' }),
|
||||
Profile.new({ name: 'Name 2', description: 'Description 2', comments: 'Comments 2' })]
|
||||
serializer = ArraySerializer.new(array, except: [:description])
|
||||
|
||||
expected = [{ name: 'Name 1' },
|
||||
{ name: 'Name 2' }]
|
||||
|
||||
assert_equal expected, serializer.serializable_array
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
18
test/unit/active_model/array_serializer/only_test.rb
Normal file
18
test/unit/active_model/array_serializer/only_test.rb
Normal file
@@ -0,0 +1,18 @@
|
||||
require 'test_helper'
|
||||
|
||||
module ActiveModel
|
||||
class ArraySerializer
|
||||
class OnlyTest < Minitest::Test
|
||||
def test_array_serializer_pass_only_to_items_serializers
|
||||
array = [Profile.new({ name: 'Name 1', description: 'Description 1', comments: 'Comments 1' }),
|
||||
Profile.new({ name: 'Name 2', description: 'Description 2', comments: 'Comments 2' })]
|
||||
serializer = ArraySerializer.new(array, only: [:name])
|
||||
|
||||
expected = [{ name: 'Name 1' },
|
||||
{ name: 'Name 2' }]
|
||||
|
||||
assert_equal expected, serializer.serializable_array
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user