# 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.patchedpython_python_repository import PatchedpythonPythonRepository # noqa: E501 from pulpcore.client.pulp_python.rest import ApiException class TestPatchedpythonPythonRepository(unittest.TestCase): """PatchedpythonPythonRepository unit test stubs""" def setUp(self): pass def tearDown(self): pass def make_instance(self, include_optional): """Test PatchedpythonPythonRepository 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.patchedpython_python_repository.PatchedpythonPythonRepository() # noqa: E501 if include_optional : return PatchedpythonPythonRepository( pulp_labels = None, name = '0', description = '0', retained_versions = 1, remote = '0', autopublish = True ) else : return PatchedpythonPythonRepository( ) def testPatchedpythonPythonRepository(self): """Test PatchedpythonPythonRepository""" inst_req_only = self.make_instance(include_optional=False) inst_req_and_optional = self.make_instance(include_optional=True) if __name__ == '__main__': unittest.main()