18 lines
524 B
Ruby
18 lines
524 B
Ruby
|
require 'spec_helper'
|
||
|
|
||
|
describe ProjectGroupLink do
|
||
|
describe "Associations" do
|
||
|
it { should belong_to(:group) }
|
||
|
it { should belong_to(:project) }
|
||
|
end
|
||
|
|
||
|
describe "Validation" do
|
||
|
let!(:project_group_link) { create(:project_group_link) }
|
||
|
|
||
|
it { should validate_presence_of(:project_id) }
|
||
|
it { should validate_uniqueness_of(:group_id).scoped_to(:project_id).with_message(/already shared/) }
|
||
|
it { should validate_presence_of(:group_id) }
|
||
|
it { should validate_presence_of(:group_access) }
|
||
|
end
|
||
|
end
|