# 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_python from pulpcore.client.pulp_python.models.python_python_remote_response import PythonPythonRemoteResponse # noqa: E501 from pulpcore.client.pulp_python.rest import ApiException class TestPythonPythonRemoteResponse(unittest.TestCase): """PythonPythonRemoteResponse unit test stubs""" def setUp(self): pass def tearDown(self): pass def make_instance(self, include_optional): """Test PythonPythonRemoteResponse 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_python.models.python_python_remote_response.PythonPythonRemoteResponse() # noqa: E501 if include_optional : return PythonPythonRemoteResponse( pulp_href = '0', pulp_created = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), name = '0', url = '0', ca_cert = '0', client_cert = '0', tls_validation = True, proxy_url = '0', pulp_labels = pulpcore.client.pulp_python.models.pulp_labels.pulp_labels(), pulp_last_updated = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), download_concurrency = 1, policy = null, total_timeout = 0.0, connect_timeout = 0.0, sock_connect_timeout = 0.0, sock_read_timeout = 0.0, headers = [ None ], rate_limit = 56, includes = pulpcore.client.pulp_python.models.includes.includes(), excludes = pulpcore.client.pulp_python.models.excludes.excludes(), prereleases = True, package_types = [ 'bdist_dmg' ], keep_latest_packages = 56, exclude_platforms = [ 'windows' ] ) else : return PythonPythonRemoteResponse( name = '0', url = '0', ) def testPythonPythonRemoteResponse(self): """Test PythonPythonRemoteResponse""" inst_req_only = self.make_instance(include_optional=False) inst_req_and_optional = self.make_instance(include_optional=True) if __name__ == '__main__': unittest.main()