FreedomBox/plinth/modules/quassel/tests/test_functional.py
James Valleroy 75f5769c16
quassel: Use BaseAppTests for functional tests
Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
2021-10-25 10:16:30 -07:00

20 lines
434 B
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Functional, browser based tests for quassel app.
"""
import pytest
from plinth.tests.functional import BaseAppTests
pytestmark = [pytest.mark.apps, pytest.mark.quassel]
class TestQuasselApp(BaseAppTests):
app_name = 'quassel'
has_service = True
has_web = False
# TODO: Improve test_backup_restore to actually check that data
# configured servers is restored.