Commit 65d63470 authored by Robert Speicher's avatar Robert Speicher

Add public/private/internal traits to :project Factory

parent 046773d6
...@@ -32,6 +32,18 @@ FactoryGirl.define do ...@@ -32,6 +32,18 @@ FactoryGirl.define do
path { name.downcase.gsub(/\s/, '_') } path { name.downcase.gsub(/\s/, '_') }
namespace namespace
creator creator
trait :public do
visibility_level Gitlab::VisibilityLevel::PUBLIC
end
trait :internal do
visibility_level Gitlab::VisibilityLevel::INTERNAL
end
trait :private do
visibility_level Gitlab::VisibilityLevel::PRIVATE
end
end end
# Generates a test repository from the repository stored under `spec/seed_project.tar.gz`. # Generates a test repository from the repository stored under `spec/seed_project.tar.gz`.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment