Skip to content
Snippets Groups Projects
Commit 21f7c99c authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

group add_users spec

parent a0640600
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -17,7 +17,11 @@ require 'spec_helper'
describe Group do
let!(:group) { create(:group) }
 
it { should have_many :projects }
describe "Associations" do
it { should have_many :projects }
it { should have_many :users_groups }
end
it { should validate_presence_of :name }
it { should validate_uniqueness_of(:name) }
it { should validate_presence_of :path }
Loading
Loading
@@ -31,4 +35,11 @@ describe Group do
describe :human_name do
it { group.human_name.should == group.name }
end
describe :add_users do
let(:user) { create(:user) }
before { group.add_users([user.id], UsersGroup::MASTER) }
it { group.users_groups.masters.map(&:user).should include(user) }
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment