2023-01-12 20:42:38 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright (c) Alexei Znamensky (russoz@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 (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
|
2023-09-12 06:42:33 +02:00
|
|
|
from ansible_collections.community.general.plugins.modules import opkg
|
2023-09-12 14:24:10 +02:00
|
|
|
from .helper import Helper
|
2023-01-12 20:42:38 +01:00
|
|
|
|
|
|
|
|
2023-10-23 23:04:18 +02:00
|
|
|
helper = Helper.from_module(opkg)
|
2023-09-12 06:42:33 +02:00
|
|
|
patch_bin = helper.cmd_fixture
|
2023-09-12 14:24:10 +02:00
|
|
|
test_module = helper.test_module
|