Sha256: 66663ea4a6571c3ee7605d0969e30c896138bb622d1d735079008cd8e92bb98d

Contents?: true

Size: 1.27 KB

Versions: 20

Compression:

Stored size: 1.27 KB

Contents

Feature: Groups access control
  To control which users will be able to modify certain parts of the website a website administrator will be able to set the access level that groups have to branches of the content tree

  Scenario: Set Content Permission
    Given I am signed in as a website administrator
    When I am editing content
    Then I should be able to set the permissions on that content

  Scenario Outline: Permissions
    Given content's <Permission> is set to "staff" and "students"
    Then only users in the "staff" and "students" should be able to <Actions> content
    And users not in the "staff" and "students" should not be able to <Actions> content

    Examples:
      | Permission | Actions                    |
      | Update     | Update, create children of |
      | Destroy    | Delete                     |
      | Publish    | Publish                    |
      | View       | View                       |

  Scenario: Inherited Permissions
    Given content exists with permissions set
    When a child of that content is created
    Then by default the child should have the same permissions as it's parent

  Scenario: Administrators
    Given I am signed in as a website administrator
    Then I should be able to carry out all actions regardless of group permissions

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
noodall-ui-0.1.14 features/group_access_control.feature
noodall-ui-0.1.13 features/group_access_control.feature
noodall-ui-0.1.12 features/group_access_control.feature
noodall-ui-0.1.11 features/group_access_control.feature
noodall-ui-0.1.10 features/group_access_control.feature
noodall-ui-0.1.9 features/group_access_control.feature
noodall-ui-0.1.8 features/group_access_control.feature
noodall-ui-0.1.6 features/group_access_control.feature
noodall-ui-0.1.5 features/group_access_control.feature
noodall-ui-0.1.4 features/group_access_control.feature
noodall-ui-0.1.3 features/group_access_control.feature
noodall-ui-0.1.2 features/group_access_control.feature
noodall-ui-0.1.1 features/group_access_control.feature
noodall-ui-0.1.0 features/group_access_control.feature
noodall-ui-0.0.22 features/group_access_control.feature
noodall-ui-0.0.21 features/group_access_control.feature
noodall-ui-0.0.20 features/group_access_control.feature
noodall-ui-0.0.19 features/group_access_control.feature
noodall-ui-0.0.18 features/group_access_control.feature
noodall-ui-0.0.17 features/group_access_control.feature