diff options
author | Artem Sidorenko <artem.sidorenko@telekom.de> | 2015-08-14 15:56:33 +0200 |
---|---|---|
committer | Artem Sidorenko <artem.sidorenko@telekom.de> | 2015-08-20 12:13:22 +0200 |
commit | e238a8dad5ec6d1bb80cc8d4dd2b3f85b55a6879 (patch) | |
tree | 5571e55d54c0bc83594083a42acae76594c4321b /features/dashboard | |
parent | 55dca86b983496a26a3913aead77439edf96afe9 (diff) | |
download | gitlab-ce-e238a8dad5ec6d1bb80cc8d4dd2b3f85b55a6879.tar.gz |
Import sources: show only enabled sources
Diffstat (limited to 'features/dashboard')
-rw-r--r-- | features/dashboard/new_project.feature | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/features/dashboard/new_project.feature b/features/dashboard/new_project.feature index 431dc4ccfcb..bbd82a85e3a 100644 --- a/features/dashboard/new_project.feature +++ b/features/dashboard/new_project.feature @@ -4,10 +4,27 @@ Background: Given I sign in as a user And I own project "Shop" And I visit dashboard page + And I click "New project" link @javascript Scenario: I should see New projects page - Given I click "New project" link Then I see "New project" page + Then I see all possible import optios + + @javascript + Scenario: I should see instructions on how to import from Git URL + Given I see "New project" page + When I click on "Any repo by URL" + Then I see instructions on how to import from Git URL + + @javascript + Scenario: I should see instructions on how to import from GitHub + Given I see "New project" page When I click on "Import project from GitHub" Then I see instructions on how to import from GitHub + + @javascript + Scenario: I should see Google Code import page + Given I see "New project" page + When I click on "Google Code" + Then I redirected to Google Code import page |