diff options
| author | Ciro Santillli <ciro.santilli@gmail.com> | 2014-02-23 10:04:56 +0100 |
|---|---|---|
| committer | Ciro Santillli <ciro.santilli@gmail.com> | 2014-02-23 10:34:39 +0100 |
| commit | 170340e6b15f91e79cf683c892ec887c3115b317 (patch) | |
| tree | 19cf1f82b08201295b3e66170a967e813c522189 /features/project/create.feature | |
| parent | e868de687da060a109bd67fd492ed110eb134d47 (diff) | |
| download | gitlab-ce-170340e6b15f91e79cf683c892ec887c3115b317.tar.gz | |
Remove dir prefix and suffix from tests inside dir.
Diffstat (limited to 'features/project/create.feature')
| -rw-r--r-- | features/project/create.feature | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/features/project/create.feature b/features/project/create.feature new file mode 100644 index 00000000000..395a3218b2b --- /dev/null +++ b/features/project/create.feature @@ -0,0 +1,22 @@ +Feature: Create Project + In order to get access to project sections + A user with ability to create a project + Should be able to create a new one + + Scenario: User create a project + Given I sign in as a user + When I visit new project page + And fill project form with valid data + Then I should see project page + And I should see empty project instuctions + + @javascript + Scenario: Empty project instructions + Given I sign in as a user + When I visit new project page + And fill project form with valid data + Then I see empty project instuctions + And I click on HTTP + Then Remote url should update to http link + And If I click on SSH + Then Remote url should update to ssh link
\ No newline at end of file |
