group add_users spec

This commit is contained in:
Dmitriy Zaporozhets 2013-06-26 15:32:09 +03:00
parent a064060096
commit 21f7c99c25
1 changed files with 12 additions and 1 deletions

View File

@ -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