OSDN Git Service

Merge pull request #5661 from jasonblanchard/sorting-project-issues
[wvm/gitlab.git] / features / project / hooks.feature
1 Feature: Project Hooks
2   Background:
3     Given I sign in as a user
4     And I own project "Shop"
5
6   Scenario: I should see hook list
7     Given project has hook
8     When I visit project hooks page
9     Then I should see project hook
10
11   Scenario: I add new hook
12     Given I visit project hooks page
13     When I submit new hook
14     Then I should see newly created hook
15
16   Scenario: I test hook
17     Given project has hook
18     And I visit project hooks page
19     When I click test hook button
20     Then hook should be triggered
21