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

41 lines
1.6 KiB

Feature: Show meetings
Background:
Given there is 1 project with the following:
| identifier | dingens |
| name | dingens |
And the project "dingens" uses the following modules:
| meetings |
And there is 1 user with:
| login | alice |
| language | en |
And there is 1 user with:
| login | bob |
And there is a role "user"
And the user "alice" is a "user" in the project "dingens"
And there is 1 meeting in project "dingens" created by "bob" with:
| title | Bobs Meeting |
@javascript
Scenario: Navigate to a meeting page with an open agenda
Given the role "user" may have the following rights:
| view_meetings |
| create_meeting_minutes |
When I login as "alice"
And I go to the Meetings page for the project called "dingens"
And I click on "Bobs Meeting"
And I click on "Minutes"
Then I should not see "Edit" within ".meeting_minutes"
@javascript
Scenario: Navigate to a meeting page with a closed agenda
Given the role "user" may have the following rights:
| view_meetings |
| create_meeting_agendas |
And the meeting "Bobs Meeting" has 1 agenda with:
| locked | true |
When I login as "alice"
And I go to the Meetings page for the project called "dingens"
And I click on "Bobs Meeting"
Then I should not see "Edit" within ".meeting_agenda"