2013-06-19 08:40:33 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: users_groups
|
|
|
|
#
|
2013-08-21 05:34:02 -04:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# group_access :integer not null
|
|
|
|
# group_id :integer not null
|
|
|
|
# user_id :integer not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# notification_level :integer default(3), not null
|
2013-06-19 08:40:33 -04:00
|
|
|
#
|
|
|
|
|
2013-06-17 06:07:16 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe UsersGroup do
|
2013-06-17 06:41:35 -04:00
|
|
|
describe "Associations" do
|
|
|
|
it { should belong_to(:group) }
|
|
|
|
it { should belong_to(:user) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Mass assignment" do
|
|
|
|
it { should_not allow_mass_assignment_of(:group_id) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Validation" do
|
|
|
|
let!(:users_group) { create(:users_group) }
|
|
|
|
|
2013-06-17 10:03:56 -04:00
|
|
|
it { should validate_presence_of(:user_id) }
|
2013-06-17 06:41:35 -04:00
|
|
|
it { should validate_uniqueness_of(:user_id).scoped_to(:group_id).with_message(/already exists/) }
|
|
|
|
|
2013-06-17 10:03:56 -04:00
|
|
|
it { should validate_presence_of(:group_id) }
|
2013-06-17 06:41:35 -04:00
|
|
|
it { should ensure_inclusion_of(:group_access).in_array(UsersGroup.group_access_roles.values) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Delegate methods" do
|
|
|
|
it { should respond_to(:user_name) }
|
|
|
|
it { should respond_to(:user_email) }
|
|
|
|
end
|
2013-06-17 06:07:16 -04:00
|
|
|
end
|