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/member_roles.feature

19 lines
658 B

Feature: Unchanged Member Roles
@javascript
Scenario: Global Roles should not be displayed as assignable project roles
Given there is 1 project with the following:
| Name | projectname |
| Identifier | projectid |
And there is 1 User with:
| Login | bob |
| Firstname | Bob |
| Lastname | Bobbit |
And there is a global role "GlobalRole1"
And there is a role "MemberRole1"
And I am already logged in as "admin"
When I go to the project member settings of the project called "projectname"
And I filter for the user "bob"
Then I should see "MemberRole1"
And I should not see "GlobalRole1"