summaryrefslogtreecommitdiff
path: root/spec/models/namespace_spec.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-11-25 11:57:01 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-11-25 11:57:01 +0200
commitc31d48dd250c56164280343a2cbe6ae14bd72a4a (patch)
tree7da7fbc4ad8b511e815445c4e6e8b7fe508ee5e2 /spec/models/namespace_spec.rb
parent2f22874ba6b26c1653bd72d9bcac0bee9e24de8a (diff)
downloadgitlab-ce-c31d48dd250c56164280343a2cbe6ae14bd72a4a.tar.gz
Allow project creation in scope of group for non-admin but group owners
Diffstat (limited to 'spec/models/namespace_spec.rb')
-rw-r--r--spec/models/namespace_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/models/namespace_spec.rb b/spec/models/namespace_spec.rb
index c2509d21f3f..16ab1b617ff 100644
--- a/spec/models/namespace_spec.rb
+++ b/spec/models/namespace_spec.rb
@@ -22,4 +22,14 @@ describe Namespace do
it { should validate_presence_of :path }
it { should validate_uniqueness_of(:path) }
it { should validate_presence_of :owner }
+
+ describe "Mass assignment" do
+ it { should allow_mass_assignment_of(:name) }
+ it { should allow_mass_assignment_of(:path) }
+ end
+
+ describe "Respond to" do
+ it { should respond_to(:human_name) }
+ it { should respond_to(:to_param) }
+ end
end