summaryrefslogtreecommitdiff
path: root/features/project/group_links.feature
blob: 2657c4487ad2bde55f3628ecacad649a5e06034b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Feature: Project Group Links
  Background:
    Given I sign in as a user
    And I own project "Shop"
    And project "Shop" is shared with group "Ops"
    And project "Shop" is not shared with group "Market"
    And I visit project group links page

  Scenario: I should see list of groups
    Then I should see project already shared with group "Ops"
    Then I should see project is not shared with group "Market"

  @javascript
  Scenario: I share project with group
    When I select group "Market" for share
    Then I should see project is shared with group "Market"