-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
de00e9f
commit 5fb03fd
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,13 +18,13 @@ def assert_last_modified(): | |
|
||
client_with_es.login('[email protected]', 'hunter2') | ||
|
||
page = client_with_es.get('/').click('Landsgemeinden') | ||
page = client_with_es.get('/').click('Archiv') | ||
assert 'Noch keine Landsgemeinden erfasst.' in page | ||
assert 'Zum Liveticker' not in page | ||
|
||
# add assembly | ||
with freeze_time('2023-05-07 9:30'): | ||
page = page.click('Landsgemeinde', index=1) | ||
page = page.click('Landsgemeinde') | ||
page.form['date'] = '2023-05-07' | ||
page.form['state'] = 'ongoing' | ||
page.form['overview'] = '<p>Lorem ipsum</p>' | ||
|
@@ -167,15 +167,15 @@ def assert_last_modified(): | |
# delete agenda item | ||
with freeze_time('2023-05-07 9:37'): | ||
page.click('Löschen') | ||
page = page.click('Landsgemeinde', index=2) | ||
page = page.click('Landsgemeinde', index=1) | ||
assert '<p>Lorem ipsum dolor sit amet</p>' in page | ||
assert 'A. consectetur adipiscing' not in page | ||
assert_last_modified() | ||
|
||
# delete landsgemeinde | ||
with freeze_time('2023-05-07 9:38'): | ||
page.click('Löschen') | ||
page = page.click('Landsgemeinden', index=0) | ||
page = page.click('Archiv', index=0) | ||
assert 'Noch keine Landsgemeinden erfasst.' in page | ||
|
||
|
||
|
@@ -189,8 +189,8 @@ def test_view_pages_cache(landsgemeinde_app): | |
|
||
# add assembly | ||
client.login('[email protected]', 'hunter2') | ||
page = client.get('/').click('Landsgemeinden') | ||
page = page.click('Landsgemeinde', index=1) | ||
page = client.get('/').click('Archiv') | ||
page = page.click('Landsgemeinde') | ||
page.form['date'] = '2023-05-07' | ||
page.form['state'] = 'completed' | ||
page.form['overview'] = 'Lorem' | ||
|