combo-plugin-imio-townstreet/tests/test_button.py

15 lines
401 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- coding: utf-8 -*-
from combo.data.models import Page
from combo_plugin_imio_townstreet.models import TownstreetButton
def test_button(app):
page = Page(title='One', slug='index')
page.save()
button = TownstreetButton(page=page, order=0, placeholder='content')
button.save()
resp = app.get('/', status=200)
assert 'Signaler un problème sur lespace public' in resp