2012-10-02 17:17:12 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: groups
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# name :string(255) not null
|
|
|
|
# code :string(255) not null
|
|
|
|
# owner_id :integer not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Group do
|
2012-10-02 17:20:46 +02:00
|
|
|
let!(:group) { create(:group) }
|
|
|
|
|
2012-10-02 17:17:12 +02:00
|
|
|
it { should have_many :projects }
|
|
|
|
it { should validate_presence_of :name }
|
|
|
|
it { should validate_uniqueness_of(:name) }
|
|
|
|
it { should validate_presence_of :code }
|
|
|
|
it { should validate_uniqueness_of(:code) }
|
2012-10-09 02:10:16 +02:00
|
|
|
it { should validate_presence_of :owner }
|
2012-10-02 17:17:12 +02:00
|
|
|
end
|