mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 06:16:50 +00:00
This adapter basically doesn't do anything, and just serializes the attributes into plain old JSON.
25 lines
577 B
Ruby
25 lines
577 B
Ruby
require 'test_helper'
|
|
|
|
module ActiveModel
|
|
class Serializer
|
|
class Adapter
|
|
class NullAdapterTest < Minitest::Test
|
|
def setup
|
|
@profile = Profile.new({ name: 'Name 1', description: 'Description 1', comments: 'Comments 1' })
|
|
@profile_serializer = ProfileSerializer.new(@profile)
|
|
|
|
@adapter = NullAdapter.new(@profile_serializer)
|
|
end
|
|
|
|
def test_null_adapter
|
|
assert_equal('{"name":"Name 1","description":"Description 1"}',
|
|
@adapter.to_json)
|
|
|
|
JSON
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|