scinote-web/spec/factories/team_shared_objects.rb
Soufiane 857bda6f69
Fix broken unit tests [SCI-8972] (#6342)
- Models tests
- Controllers tests
- Jobs tests
- Permissions tests
- Utilities tests
2023-10-12 16:16:43 +02:00

13 lines
231 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :team_shared_object do
trait :read do
permission_level { :shared_read }
end
trait :write do
permission_level { :shared_write }
end
end
end