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_index.feature

43 lines
1.8 KiB

Feature: Show existing meetings
14 years ago
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 a role "user"
And the role "user" may have the following rights:
| view_meetings |
And the user "alice" is a "user" in the project "dingens"
@javascript
Scenario: Navigate to the meeting index page with no meetings
14 years ago
When I login as "alice"
And I go to the page for the project "dingens"
And I click on "Meetings"
Then I should see "Meetings" within "#content"
And I should see "No data to display" within "#content"
@javascript
Scenario: Navigate to the meeting index page with 2 meetings
14 years ago
Given there is 1 meeting in project "dingens" created by "alice" with:
| title | Meeting 1 |
| location | Room 1 |
| duration | 1:30 |
| start_time | 2011-02-11 12:30:00 |
And there is 1 meeting in project "dingens" created by "alice" with:
| title | Meeting 2 |
| location | Room 2 |
| duration | 2:30 |
| start_time | 2011-02-10 11:00:00 |
When I login as "alice"
And I go to the page for the project "dingens"
And I click on "Meetings"
Then I should see "Meetings" within "#content"
But I should not see "No data to display" within "#content"
# Die Reihenfolge der Meetings muss überprüft werden
And I should see 2 meetings