2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-04 08:47:37 +08:00
discourse/spec/serializers/basic_group_serializer_spec.rb
2017-07-21 13:37:32 +09:00

23 lines
579 B
Ruby

require 'rails_helper'
describe BasicGroupSerializer do
subject { described_class.new(group, scope: Guardian.new, root: false) }
describe '#display_name' do
describe 'automatic group' do
let(:group) { Group.find(1) }
it 'should include the display name' do
expect(subject.display_name).to eq(I18n.t('groups.default_names.admins'))
end
end
describe 'normal group' do
let(:group) { Fabricate(:group) }
it 'should not include the display name' do
expect(subject.display_name).to eq(nil)
end
end
end
end