1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-06-11 18:45:34 +00:00
community.general/tests/unit/plugins/modules/test_kopia_notification.py
munchtoast 1e20d1f490 feat: Add kopia_notification module
- Manage Kopia notification profiles (email, Pushover, webhook) and
  message templates via the Kopia CLI.
- Extends community.general._kopia doc fragment for shared password
  and config options.
- Uses fixed args for read-only _get() list_profiles method.
2026-06-04 10:40:29 -04:00

11 lines
466 B
Python

# Copyright (c) 2026, Dexter Le <dextersydney2001@gmail.com>
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
from __future__ import annotations
from ansible_collections.community.general.plugins.modules import kopia_notification
from .uthelper import RunCommandMock, UTHelper
UTHelper.from_module(kopia_notification, __name__, mocks=[RunCommandMock])