gitlab-org--gitlab-foss/spec/models/group_spec.rb

25 lines
649 B
Ruby
Raw Normal View History

2012-10-02 15:17:12 +00:00
# == Schema Information
#
# Table name: groups
#
2012-11-19 18:24:05 +00:00
# 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
2012-10-02 15:17:12 +00:00
#
require 'spec_helper'
describe Group do
2012-10-02 15:20:46 +00:00
let!(:group) { create(:group) }
2012-10-02 15:17:12 +00:00
it { should have_many :projects }
it { should validate_presence_of :name }
it { should validate_uniqueness_of(:name) }
2012-11-23 18:53:24 +00:00
it { should validate_presence_of :path }
it { should validate_uniqueness_of(:path) }
2012-10-09 00:10:16 +00:00
it { should validate_presence_of :owner }
2012-10-02 15:17:12 +00:00
end