2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-07-21 02:12:24 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe BasicGroupUserSerializer do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:group) { Fabricate(:group) }
|
|
|
|
fab!(:user) { Fabricate(:user) }
|
2017-07-21 02:12:24 -04:00
|
|
|
|
|
|
|
before do
|
|
|
|
group.add(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#owner' do
|
|
|
|
describe 'when scoped to the user' do
|
|
|
|
it 'should be false' do
|
|
|
|
json = described_class.new(
|
|
|
|
GroupUser.last,
|
|
|
|
scope: Guardian.new(user),
|
|
|
|
root: false
|
|
|
|
).as_json
|
|
|
|
|
|
|
|
expect(json[:owner]).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when not scoped to the user' do
|
|
|
|
it 'should be nil' do
|
|
|
|
json = described_class.new(
|
|
|
|
GroupUser.last,
|
|
|
|
scope: Guardian.new,
|
|
|
|
root: false
|
|
|
|
).as_json
|
|
|
|
|
|
|
|
expect(json[:owner]).to eq(nil)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|