2012-11-22 22:41:16 +03:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Namespace do
|
|
|
|
let!(:namespace) { create(:namespace) }
|
|
|
|
|
|
|
|
it { should have_many :projects }
|
|
|
|
it { should validate_presence_of :name }
|
|
|
|
it { should validate_uniqueness_of(:name) }
|
2012-11-23 20:53:24 +02:00
|
|
|
it { should validate_presence_of :path }
|
|
|
|
it { should validate_uniqueness_of(:path) }
|
2012-11-22 22:41:16 +03:00
|
|
|
it { should validate_presence_of :owner }
|
|
|
|
end
|