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

34 lines
837 B
Ruby
Raw Normal View History

2012-10-02 11:17:12 -04:00
# == Schema Information
#
2012-11-24 15:16:51 -05:00
# Table name: namespaces
2012-10-02 11:17:12 -04:00
#
2012-11-19 13:24:05 -05:00
# id :integer not null, primary key
# name :string(255) not null
2012-11-24 15:16:51 -05:00
# path :string(255) not null
2012-11-19 13:24:05 -05:00
# owner_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
2012-11-24 15:16:51 -05:00
# type :string(255)
2012-10-02 11:17:12 -04:00
#
require 'spec_helper'
describe Group do
2012-10-02 11:20:46 -04:00
let!(:group) { create(:group) }
2012-10-02 11:17:12 -04:00
it { should have_many :projects }
it { should validate_presence_of :name }
it { should validate_uniqueness_of(:name) }
2012-11-23 13:53:24 -05:00
it { should validate_presence_of :path }
it { should validate_uniqueness_of(:path) }
2012-10-08 20:10:16 -04:00
it { should validate_presence_of :owner }
2012-11-20 23:14:05 -05:00
describe :users do
it { group.users.should == [group.owner] }
2012-11-20 23:14:05 -05:00
end
describe :human_name do
it { group.human_name.should == group.name }
end
2012-10-02 11:17:12 -04:00
end