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:
Diffstat (limited to 'features/steps/shared/project.rb')
-rw-r--r--features/steps/shared/project.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/features/steps/shared/project.rb b/features/steps/shared/project.rb
index f8cb753b78f..40362fee0bc 100644
--- a/features/steps/shared/project.rb
+++ b/features/steps/shared/project.rb
@@ -102,24 +102,24 @@ module SharedProject
page.should_not have_content "Community"
end
- step '"John Doe" is authorized to private project "Enterprise"' do
+ step '"John Doe" owns private project "Enterprise"' do
user = user_exists("John Doe", username: "john_doe")
project = Project.find_by(name: "Enterprise")
- project ||= create(:project, name: "Enterprise", namespace: user.namespace)
+ project ||= create(:empty_project, name: "Enterprise", namespace: user.namespace)
project.team << [user, :master]
end
- step '"John Doe" is authorized to internal project "Internal"' do
+ step '"John Doe" owns internal project "Internal"' do
user = user_exists("John Doe", username: "john_doe")
project = Project.find_by(name: "Internal")
- project ||= create :project, :internal, name: 'Internal'
+ project ||= create :empty_project, :internal, name: 'Internal', namespace: user.namespace
project.team << [user, :master]
end
- step '"John Doe" is authorized to public project "Community"' do
+ step '"John Doe" owns public project "Community"' do
user = user_exists("John Doe", username: "john_doe")
project = Project.find_by(name: "Community")
- project ||= create :project, :public, name: 'Community'
+ project ||= create :empty_project, :public, name: 'Community', namespace: user.namespace
project.team << [user, :master]
end
end