Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-02-16 00:02:33 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-02-16 00:02:33 +0400
commit37224dc9c1ee80ba9030b616e2bc87bd96919e09 (patch)
tree5291abadd8748ea47685c326df4b137d0d6a2194 /spec/models/protected_branch_spec.rb
parent3a9e5a9357b6b0cac2acdefa203136c9b572e102 (diff)
ProtectedBranches model, Master permission for repo\n Allow push to protected branch for masters only
Diffstat (limited to 'spec/models/protected_branch_spec.rb')
-rw-r--r--spec/models/protected_branch_spec.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/models/protected_branch_spec.rb b/spec/models/protected_branch_spec.rb
new file mode 100644
index 00000000000..a0b0032a558
--- /dev/null
+++ b/spec/models/protected_branch_spec.rb
@@ -0,0 +1,16 @@
+# == Schema Information
+#
+# Table name: protected_branches
+#
+# id :integer not null, primary key
+# project_id :integer not null
+# name :string(255) not null
+# created_at :datetime not null
+# updated_at :datetime not null
+#
+
+require 'spec_helper'
+
+describe ProtectedBranch do
+ pending "add some examples to (or delete) #{__FILE__}"
+end