Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
BreathingFlesh committed Dec 23, 2024
1 parent de00e9f commit 5fb03fd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/onegov/landsgemeinde/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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>'
Expand Down Expand Up @@ -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


Expand All @@ -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'
Expand Down

0 comments on commit 5fb03fd

Please sign in to comment.