Sha256: 824d952f90a6c0f43f461fa3495664ac82111a467d0b9dad6f437237c8b9d6fb
Contents?: true
Size: 386 Bytes
Versions: 10
Compression:
Stored size: 386 Bytes
Contents
require 'test_helper' module ActiveModel class Serializer class FieldsetTest < ActiveSupport::TestCase def test_fieldset_with_hash fieldset = ActiveModel::Serializer::Fieldset.new('post' => %w(id title), 'comment' => ['body']) expected = { post: [:id, :title], comment: [:body] } assert_equal(expected, fieldset.fields) end end end end
Version data entries
10 entries across 10 versions & 2 rubygems