OSDN Git Service

Merge pull request #3704 from former03/feature_bugfix_js_memberadd_realtive_url_root
[wvm/gitlab.git] / features / project / network.feature
1 Feature: Project Network Graph
2   Background:
3     Given I sign in as a user
4     And I own project "Shop"
5     And I visit project "Shop" network page
6
7   @javascript
8   Scenario: I should see project network
9     Then page should have network graph
10     And page should select "master" in select box
11     And page should have "master" on graph
12
13   @javascript
14   Scenario: I should switch "branch" and "tag"
15     When I switch ref to "stable"
16     Then page should select "stable" in select box
17     And page should have "stable" on graph
18     When I switch ref to "v2.1.0"
19     Then page should select "v2.1.0" in select box
20     And page should have "v2.1.0" on graph
21
22   @javascript
23   Scenario: I should looking for a commit by SHA
24     When I looking for a commit by SHA of "v2.1.0"
25     Then page should have network graph
26     And page should select "master" in select box
27     And page should have "v2.1.0" on graph