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/project/fork.rb')
-rw-r--r--features/steps/project/fork.rb34
1 files changed, 0 insertions, 34 deletions
diff --git a/features/steps/project/fork.rb b/features/steps/project/fork.rb
deleted file mode 100644
index 8e58597db20..00000000000
--- a/features/steps/project/fork.rb
+++ /dev/null
@@ -1,34 +0,0 @@
-class Spinach::Features::ProjectFork < Spinach::FeatureSteps
- include SharedAuthentication
- include SharedPaths
- include SharedProject
-
- step 'I click link "Fork"' do
- page.should have_content "Shop"
- page.should have_content "Fork"
- click_link "Fork"
- end
-
- step 'I am a member of project "Shop"' do
- @project = create(:project, name: "Shop")
- @project.team << [@user, :reporter]
- end
-
- step 'I should see the forked project page' do
- page.should have_content "Project was successfully forked."
- end
-
- step 'I already have a project named "Shop" in my namespace' do
- @my_project = create(:project, name: "Shop", namespace: current_user.namespace)
- end
-
- step 'I should see a "Name has already been taken" warning' do
- page.should have_content "Name has already been taken"
- end
-
- step 'I fork to my namespace' do
- within '.fork-namespaces' do
- click_link current_user.name
- end
- end
-end