Commit 21f7c99c authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

group add_users spec

parent a0640600
......@@ -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 }
......@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment