Fix changed empty text

pull/6827/head
Oliver Günther 9 years ago
parent 6873ca5b04
commit 43e7d0088e
  1. 4
      features/meetings_index.feature
  2. 6
      features/meetings_show.feature

@ -39,7 +39,7 @@ Feature: Show existing meetings
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"
And I should see "There is currently nothing to display." within "#content"
Scenario: Navigate to the meeting index page with 2 meetings
Given there is 1 meeting in project "dingens" created by "alice" with:
@ -56,7 +56,7 @@ Feature: Show existing meetings
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"
But I should not see "There is currently nothing to display." within "#content"
And I should see 4 meetings
Scenario: Lots of Meetings are split into pages

@ -51,7 +51,7 @@ Feature: Show meetings
When I go to the show page for the meeting called "Bobs Meeting"
Then I should see "Agenda" within ".meeting_agenda"
And I should see "No data to display" within ".meeting_agenda"
And I should see "There is currently nothing to display." within ".meeting_agenda"
Scenario: Navigate to a meeting page with a closed agenda
Given the role "user" may have the following rights:
@ -62,7 +62,7 @@ Feature: Show meetings
When I go to the show page for the meeting called "Bobs Meeting"
Then I should see "Minutes" within ".meeting_minutes"
And I should see "No data to display" within ".meeting_minutes"
And I should see "There is currently nothing to display." within ".meeting_minutes"
@javascript
Scenario: Navigate to a meeting page with an open agenda and the permission to edit the agenda
@ -73,7 +73,7 @@ Feature: Show meetings
When I go to the show page for the meeting called "Bobs Meeting"
Then I should see "Agenda" within ".meeting_agenda"
And I should not see "No data to display" within "#meeting_agenda_text"
And I should not see "There is currently nothing to display." within "#meeting_agenda_text"
And there should be a text edit toolbar for the "#meeting_agenda_text" field
@javascript

Loading…
Cancel
Save