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')
-rw-r--r--features/dashboard/new_project_menu.feature2
-rw-r--r--features/steps/dashboard/new_project_top_menu.rb17
2 files changed, 18 insertions, 1 deletions
diff --git a/features/dashboard/new_project_menu.feature b/features/dashboard/new_project_menu.feature
index c339fb0e897..5456c9fd4dd 100644
--- a/features/dashboard/new_project_menu.feature
+++ b/features/dashboard/new_project_menu.feature
@@ -1,5 +1,5 @@
@dashboard
-Feature: New Project through top menu
+Feature: New Project top menu
Background:
Given I sign in as a user
And I own project "Shop"
diff --git a/features/steps/dashboard/new_project_top_menu.rb b/features/steps/dashboard/new_project_top_menu.rb
new file mode 100644
index 00000000000..364be964efd
--- /dev/null
+++ b/features/steps/dashboard/new_project_top_menu.rb
@@ -0,0 +1,17 @@
+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