2012-06-16 12:03:20 +02:00
|
|
|
Feature: Project Network Graph
|
|
|
|
Background:
|
2012-09-10 15:35:23 +02:00
|
|
|
Given I sign in as a user
|
2012-06-16 12:03:20 +02:00
|
|
|
And I own project "Shop"
|
2012-08-22 04:20:09 +02:00
|
|
|
And I visit project "Shop" network page
|
2012-06-16 12:03:20 +02:00
|
|
|
|
2012-09-10 15:35:23 +02:00
|
|
|
@javascript
|
2012-06-16 12:03:20 +02:00
|
|
|
Scenario: I should see project network
|
|
|
|
Then page should have network graph
|
2013-03-04 09:50:42 +01:00
|
|
|
And page should select "master" in select box
|
|
|
|
And page should have "master" on graph
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I should switch ref to "stable"
|
|
|
|
When I switch ref to "stable"
|
|
|
|
Then page should have network graph
|
|
|
|
And page should select "stable" in select box
|
|
|
|
And page should have "stable" on graph
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I should looking for a commit by SHA of "v2.1.0"
|
|
|
|
When I looking for a commit by SHA of "v2.1.0"
|
|
|
|
Then page should have network graph
|
|
|
|
And page should select "master" in select box
|
|
|
|
And page should have "v2.1.0" on graph
|