mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-22 06:06:45 +00:00
19 lines
391 B
Ruby
19 lines
391 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe REST::RuleSerializer do
|
|
subject { serialized_record_json(record, described_class) }
|
|
|
|
let(:record) { Fabricate.build :rule, id: 123 }
|
|
|
|
describe 'serialization' do
|
|
it 'returns expected values' do
|
|
expect(subject)
|
|
.to include(
|
|
'id' => be_a(String).and(eq('123'))
|
|
)
|
|
end
|
|
end
|
|
end
|