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/dashboard/new_project_top_menu.rb')
-rw-r--r--features/steps/dashboard/new_project_top_menu.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/features/steps/dashboard/new_project_top_menu.rb b/features/steps/dashboard/new_project_top_menu.rb
deleted file mode 100644
index 364be964efd..00000000000
--- a/features/steps/dashboard/new_project_top_menu.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-class Spinach::Features::NewProjectTopMenu < Spinach::FeatureSteps
- include SharedAuthentication
- include SharedPaths
- include SharedProject
-
- step 'I click "New project" in top right menu' do
- page.within '.header-content' do
- click_link "New project"
- end
- end
-
- step 'I see "New Project" page' do
- expect(page).to have_content('Project path')
- expect(page).to have_content('Project name')
- end
-
-end