12aa1f898d
This stands as an alternative to using OAuth to access a user's Github repositories. This is setup in such a way that it can be used without OAuth configuration. From a UI perspective, the how to import modal has been replaced by a full page, which includes a form for posting a personal access token back to the Import::GithubController. If the user has logged in via GitHub, skip the Personal Access Token and go directly to Github for an access token via OAuth.
30 lines
882 B
Gherkin
30 lines
882 B
Gherkin
@dashboard
|
|
Feature: New Project
|
|
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
|
|
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 "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 am redirected to the Github import page
|
|
|
|
@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
|