scinote-web/spec/models/team_shared_object_spec.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

26 lines
760 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe TeamSharedObject, type: :model do
let(:user) { create :user }
let(:team) { create :team, created_by: user }
let(:another_team) { create :team, created_by: user }
let(:repository) { create :repository, team: team, created_by: user }
let(:team_shared_object) { create :team_shared_object, :read, team: another_team, shared_object: repository }
it 'is valid' do
expect(team_shared_object).to be_valid
end
it 'should be of class TeamSharedObject' do
expect(subject.class).to eq TeamSharedObject
end
describe 'Relations' do
it { should belong_to(:team) }
it { should belong_to(:shared_object) }
it { should belong_to(:shared_repository).optional }
end
end