2022-11-07 19:15:00 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2022-08-13 14:56:40 +00:00
|
|
|
# Author: Alexei Znamensky (russoz@gmail.com)
|
|
|
|
# Largely adapted from test_redhat_subscription by
|
|
|
|
# Jiri Hnidek (jhnidek@redhat.com)
|
|
|
|
#
|
2022-08-08 21:23:08 +00:00
|
|
|
# Copyright (c) Alexei Znamensky (russoz@gmail.com)
|
|
|
|
# Copyright (c) Jiri Hnidek (jhnidek@redhat.com)
|
2021-04-18 08:55:47 +00:00
|
|
|
#
|
2022-08-05 10:28:29 +00:00
|
|
|
# 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
|
2021-04-18 08:55:47 +00:00
|
|
|
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
|
2023-09-10 19:24:59 +00:00
|
|
|
from ansible_collections.community.general.plugins.modules import cpanm
|
2024-09-28 05:33:00 +00:00
|
|
|
from .helper import Helper, RunCommandMock # pylint: disable=unused-import
|
2021-04-18 08:55:47 +00:00
|
|
|
|
|
|
|
|
2023-11-20 10:23:16 +00:00
|
|
|
Helper.from_module(cpanm, __name__)
|