2019-04-29 19:27:42 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 21:27:38 -05:00
|
|
|
RSpec.describe BasicGroupUserSerializer do
|
2019-05-06 22:12:20 -05:00
|
|
|
fab!(:group) { Fabricate(:group) }
|
|
|
|
fab!(:user) { Fabricate(:user) }
|
2017-07-21 01:12:24 -05:00
|
|
|
|
2023-01-09 05:18:21 -06:00
|
|
|
before { group.add(user) }
|
2017-07-21 01:12:24 -05:00
|
|
|
|
2023-01-09 05:18:21 -06:00
|
|
|
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
|
2017-07-21 01:12:24 -05:00
|
|
|
|
|
|
|
expect(json[:owner]).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-01-09 05:18:21 -06:00
|
|
|
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
|
2017-07-21 01:12:24 -05:00
|
|
|
|
|
|
|
expect(json[:owner]).to eq(nil)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|