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/create.rb')
-rw-r--r--features/steps/project/create.rb42
1 files changed, 0 insertions, 42 deletions
diff --git a/features/steps/project/create.rb b/features/steps/project/create.rb
deleted file mode 100644
index 6b85cf74f5f..00000000000
--- a/features/steps/project/create.rb
+++ /dev/null
@@ -1,42 +0,0 @@
-class Spinach::Features::ProjectCreate < Spinach::FeatureSteps
- include SharedAuthentication
- include SharedPaths
-
- step 'fill project form with valid data' do
- fill_in 'project_path', with: 'Empty'
- click_button "Create project"
- end
-
- step 'I should see project page' do
- page.should have_content "Empty"
- current_path.should == namespace_project_path(Project.last.namespace, Project.last)
- end
-
- step 'I should see empty project instuctions' do
- page.should have_content "git init"
- page.should have_content "git remote"
- page.should have_content Project.last.url_to_repo
- end
-
- step 'I see empty project instuctions' do
- page.should have_content "git init"
- page.should have_content "git remote"
- page.should have_content Project.last.url_to_repo
- end
-
- step 'I click on HTTP' do
- click_button 'HTTP'
- end
-
- step 'Remote url should update to http link' do
- page.should have_content "git remote add origin #{Project.last.http_url_to_repo}"
- end
-
- step 'If I click on SSH' do
- click_button 'SSH'
- end
-
- step 'Remote url should update to ssh link' do
- page.should have_content "git remote add origin #{Project.last.url_to_repo}"
- end
-end