gitlab-org--gitlab-foss/features/dashboard/dashboard.feature

36 lines
1.1 KiB
Gherkin
Raw Normal View History

2012-06-16 09:50:14 +00:00
Feature: Dashboard
Background:
Given I sign in as a user
2012-06-16 09:50:14 +00:00
And I own project "Shop"
And project "Shop" has push event
And I visit dashboard page
2012-06-16 09:50:14 +00:00
@javascript
2012-06-16 09:50:14 +00:00
Scenario: I should see projects list
Then I should see "New Project" link
Then I should see "Shop" project link
Then I should see project "Shop" activity feed
2012-10-03 10:42:17 +00:00
Scenario: I should see groups list
Given I have group with projects
And I visit dashboard page
Then I should see groups list
Scenario: I should see last push widget
2012-06-16 09:50:14 +00:00
Then I should see last push widget
And I click "Create Merge Request" link
Then I see prefilled new Merge Request page
@javascript
2012-09-09 20:18:28 +00:00
Scenario: I should see User joined Project event
Given user with name "John Doe" joined project "Shop"
When I visit dashboard page
2012-10-02 09:32:59 +00:00
Then I should see "John Doe joined project at Shop" event
2012-09-09 21:27:47 +00:00
@javascript
2012-09-09 21:27:47 +00:00
Scenario: I should see User left Project event
Given user with name "John Doe" joined project "Shop"
And user with name "John Doe" left project "Shop"
When I visit dashboard page
2012-10-02 09:32:59 +00:00
Then I should see "John Doe left project at Shop" event