mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-18 15:13:21 +08:00
857bda6f69
- Models tests - Controllers tests - Jobs tests - Permissions tests - Utilities tests
25 lines
760 B
Ruby
25 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
|