FreedomBox/plinth/modules/roundcube/tests/test_functional.py
James Valleroy 6358d4fcd3
roundcube: Use BaseAppTests for functional tests
Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
2021-10-18 10:28:03 -07:00

17 lines
335 B
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Functional, browser based tests for roundcube app.
"""
import pytest
from plinth.tests.functional import BaseAppTests
pytestmark = [pytest.mark.apps, pytest.mark.roundcube]
class TestRoundcubeApp(BaseAppTests):
app_name = 'roundcube'
has_service = False
has_web = True