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:
authorEirik Lygre <eirik.lygre@gmail.com>2015-12-09 02:20:51 +0300
committerEirik Lygre <eirik.lygre@gmail.com>2015-12-09 02:20:51 +0300
commit430aa23a5b82b34912dc86c323087fabd2849b7c (patch)
treea2c7cdb10d8377399ec527fe3a0f23a9bad5c9e3 /features/explore/projects.feature
parent419d6fa6b19f2e2ee6429f7db453573155ca2d21 (diff)
Add spinach tests for the clone protocol selection.
Diffstat (limited to 'features/explore/projects.feature')
-rw-r--r--features/explore/projects.feature21
1 files changed, 19 insertions, 2 deletions
diff --git a/features/explore/projects.feature b/features/explore/projects.feature
index 5d3870827f5..63b0ac65c4b 100644
--- a/features/explore/projects.feature
+++ b/features/explore/projects.feature
@@ -31,8 +31,17 @@ Feature: Explore Projects
Then I should see empty public project details
And I should see empty public project details with http clone info
- Scenario: I visit an empty public project page as user
+ Scenario: I visit an empty public project page as user with no ssh-keys
Given I sign in as a user
+ And I have no ssh keys
+ And public empty project "Empty Public Project"
+ When I visit empty project page
+ Then I should see empty public project details
+ And I should see empty public project details with http clone info
+
+ Scenario: I visit an empty public project page as user with an ssh-key
+ Given I sign in as a user
+ And I have ssh key "ssh-rsa Work"
And public empty project "Empty Public Project"
When I visit empty project page
Then I should see empty public project details
@@ -57,8 +66,16 @@ Feature: Explore Projects
Then I should see project "Community" home page
And I should see an http link to the repository
- Scenario: I visit public project page as user
+ Scenario: I visit public project page as user with no ssh-keys
+ Given I sign in as a user
+ And I have no ssh keys
+ When I visit project "Community" page
+ Then I should see project "Community" home page
+ And I should see an http link to the repository
+
+ Scenario: I visit public project page as user with an ssh-key
Given I sign in as a user
+ And I have ssh key "ssh-rsa Work"
When I visit project "Community" page
Then I should see project "Community" home page
And I should see an ssh link to the repository