Sha256: 00791bc8c712e71d9c3f54217e223ae1d7e50287a27a19d9367089582d95f252

Contents?: true

Size: 1.96 KB

Versions: 3

Compression:

Stored size: 1.96 KB

Contents

# coding: utf-8

"""
    Pulp 3 API

    Fetch, Upload, Organize, and Distribute Software Packages  # noqa: E501

    The version of the OpenAPI document: v3
    Contact: pulp-list@redhat.com
    Generated by: https://openapi-generator.tech
"""


from __future__ import absolute_import

import unittest
import datetime

import pulpcore.client.pulp_rpm
from pulpcore.client.pulp_rpm.models.patchedrpm_rpm_repository import PatchedrpmRpmRepository  # noqa: E501
from pulpcore.client.pulp_rpm.rest import ApiException

class TestPatchedrpmRpmRepository(unittest.TestCase):
    """PatchedrpmRpmRepository unit test stubs"""

    def setUp(self):
        pass

    def tearDown(self):
        pass

    def make_instance(self, include_optional):
        """Test PatchedrpmRpmRepository
            include_option is a boolean, when False only required
            params are included, when True both required and
            optional params are included """
        # model = pulpcore.client.pulp_rpm.models.patchedrpm_rpm_repository.PatchedrpmRpmRepository()  # noqa: E501
        if include_optional :
            return PatchedrpmRpmRepository(
                pulp_labels = None, 
                name = '0', 
                description = '0', 
                retained_versions = 1, 
                remote = '0', 
                autopublish = True, 
                metadata_signing_service = '0', 
                retain_package_versions = 0, 
                metadata_checksum_type = null, 
                package_checksum_type = null, 
                gpgcheck = 0, 
                repo_gpgcheck = 0, 
                sqlite_metadata = True
            )
        else :
            return PatchedrpmRpmRepository(
        )

    def testPatchedrpmRpmRepository(self):
        """Test PatchedrpmRpmRepository"""
        inst_req_only = self.make_instance(include_optional=False)
        inst_req_and_optional = self.make_instance(include_optional=True)


if __name__ == '__main__':
    unittest.main()

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pulp_rpm_client-3.13.2 test/test_patchedrpm_rpm_repository.py
pulp_rpm_client-3.13.1 test/test_patchedrpm_rpm_repository.py
pulp_rpm_client-3.13.0 test/test_patchedrpm_rpm_repository.py