Sha256: 96a589419f94ed0573f275b6740eba131f04f2c6d104407fe2e694bd01f508b5

Contents?: true

Size: 1.95 KB

Versions: 2

Compression:

Stored size: 1.95 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.content_summary_response import ContentSummaryResponse  # noqa: E501
from pulpcore.client.pulp_maven.rest import ApiException

class TestContentSummaryResponse(unittest.TestCase):
    """ContentSummaryResponse unit test stubs"""

    def setUp(self):
        pass

    def tearDown(self):
        pass

    def make_instance(self, include_optional):
        """Test ContentSummaryResponse
            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.content_summary_response.ContentSummaryResponse()  # noqa: E501
        if include_optional :
            return ContentSummaryResponse(
                added = {
                    'key' : None
                    }, 
                removed = {
                    'key' : None
                    }, 
                present = {
                    'key' : None
                    }
            )
        else :
            return ContentSummaryResponse(
                added = {
                    'key' : None
                    },
                removed = {
                    'key' : None
                    },
                present = {
                    'key' : None
                    },
        )

    def testContentSummaryResponse(self):
        """Test ContentSummaryResponse"""
        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

2 entries across 2 versions & 1 rubygems

Version Path
pulp_maven_client-0.3.1 test/test_content_summary_response.py
pulp_maven_client-0.3.0 test/test_content_summary_response.py