Sha256: 1b14f8e7552e97ba3640f28a8a473ea20ac79e0b626609dc963546f52d50858c

Contents?: true

Size: 1.96 KB

Versions: 1

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_maven
from pulpcore.client.pulp_maven.models.maven_maven_repository_response import MavenMavenRepositoryResponse  # noqa: E501
from pulpcore.client.pulp_maven.rest import ApiException

class TestMavenMavenRepositoryResponse(unittest.TestCase):
    """MavenMavenRepositoryResponse unit test stubs"""

    def setUp(self):
        pass

    def tearDown(self):
        pass

    def make_instance(self, include_optional):
        """Test MavenMavenRepositoryResponse
            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_maven.models.maven_maven_repository_response.MavenMavenRepositoryResponse()  # noqa: E501
        if include_optional :
            return MavenMavenRepositoryResponse(
                pulp_href = '0', 
                pulp_created = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), 
                versions_href = '0', 
                pulp_labels = pulpcore.client.pulp_maven.models.pulp_labels.pulp_labels(), 
                latest_version_href = '0', 
                name = '0', 
                description = '0', 
                remote = '0'
            )
        else :
            return MavenMavenRepositoryResponse(
                name = '0',
        )

    def testMavenMavenRepositoryResponse(self):
        """Test MavenMavenRepositoryResponse"""
        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

1 entries across 1 versions & 1 rubygems

Version Path
pulp_maven_client-0.3.0 test/test_maven_maven_repository_response.py