From a4a1f076839c5c0897ea474f079d7dad86ee43a9 Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Wed, 19 Jan 2022 12:15:49 -0500 Subject: [PATCH] shaarli: Add functional test Signed-off-by: James Valleroy Reviewed-by: Sunil Mohan Adapa --- .../modules/shaarli/tests/test_functional.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 plinth/modules/shaarli/tests/test_functional.py diff --git a/plinth/modules/shaarli/tests/test_functional.py b/plinth/modules/shaarli/tests/test_functional.py new file mode 100644 index 000000000..4dc86c3b4 --- /dev/null +++ b/plinth/modules/shaarli/tests/test_functional.py @@ -0,0 +1,18 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later +""" +Functional, browser based tests for shaarli app. +""" + +import pytest + +from plinth.tests.functional import BaseAppTests + +pytestmark = [pytest.mark.apps, pytest.mark.shaarli] + + +class TestShaarliApp(BaseAppTests): + app_name = 'shaarli' + has_service = False + has_web = True + # TODO: Complete Shaarli setup. + # TODO: Add, edit, remove bookmark.