2019-04-30 10:27:42 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 05:27:38 +03:00
|
|
|
RSpec.describe BasicGroupUserSerializer do
|
2023-11-09 16:47:59 -06:00
|
|
|
fab!(:group)
|
|
|
|
fab!(:user)
|
2017-07-21 15:12:24 +09:00
|
|
|
|
|
|
|
before { group.add(user) }
|
|
|
|
|
|
|
|
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
|