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

52 lines
1.6 KiB
Gherkin
Raw Normal View History

2012-12-02 20:18:03 +00:00
Feature: Event filters
Background:
Given I sign in as a user
And I own a project
And this project has push event
And this project has new member event
And this project has merge request event
And I visit dashboard page
@javascript
2012-12-02 20:18:03 +00:00
Scenario: I should see all events
Then I should see push event
2012-12-02 20:54:19 +00:00
And I should see new member event
And I should see merge request event
2012-12-03 00:29:07 +00:00
@javascript
2012-12-02 20:54:19 +00:00
Scenario: I should see only pushed events
When I click "push" event filter
Then I should see push event
And I should not see new member event
And I should not see merge request event
2012-12-03 00:29:07 +00:00
@javascript
2012-12-02 20:54:19 +00:00
Scenario: I should see only joined events
When I click "team" event filter
2012-12-02 20:18:03 +00:00
Then I should see new member event
2012-12-02 20:54:19 +00:00
And I should not see push event
And I should not see merge request event
2012-12-02 20:18:03 +00:00
2012-12-03 00:29:07 +00:00
@javascript
2012-12-02 20:54:19 +00:00
Scenario: I should see only merged events
When I click "merge" event filter
Then I should see merge request event
And I should not see push event
And I should not see new member event
2012-12-03 00:29:07 +00:00
@javascript
Scenario: I should see only selected events while page reloaded
When I click "push" event filter
And I visit dashboard page
Then I should see push event
And I should not see new member event
When I click "team" event filter
And I visit dashboard page
Then I should see push event
And I should see new member event
And I should not see merge request event
2012-12-03 05:09:05 +00:00
When I click "push" event filter
2012-12-03 00:29:07 +00:00
Then I should not see push event
And I should see new member event
And I should not see merge request event