OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/features/role_permissions.feature

24 lines
760 B

Feature: Role Permissions
@javascript
Scenario: Global Permissions for new role
Given there is the global permission "glob_test" of the module "global_group"
And I am admin
When I go to the new page of "Role"
And I check "global_role"
Then I should see "Global group"
And I should see "Glob test"
@javascript
Scenario: Create Project is not a member permission
Given there is a role "Member"
And I am admin
When I go to the edit page of the role "Member"
Then I should not see "Create project"
@javascript
Scenario: Create Project is a global permission
Given there is a global role "Global"
And I am admin
When I go to the edit page of the role "Global"
Then I should see "Create project"