Sha256: 18a125c39fb1956881c4a768c3d28f507a868d8ee8131fe086b6b9eda9099f9b

Contents?: true

Size: 1.85 KB

Versions: 1

Compression:

Stored size: 1.85 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 pulpcore.client.pulp_python
from pulpcore.client.pulp_python.api.repositories_python_api import RepositoriesPythonApi  # noqa: E501
from pulpcore.client.pulp_python.rest import ApiException


class TestRepositoriesPythonApi(unittest.TestCase):
    """RepositoriesPythonApi unit test stubs"""

    def setUp(self):
        self.api = pulpcore.client.pulp_python.api.repositories_python_api.RepositoriesPythonApi()  # noqa: E501

    def tearDown(self):
        pass

    def test_create(self):
        """Test case for create

        Create a python repository  # noqa: E501
        """
        pass

    def test_delete(self):
        """Test case for delete

        Delete a python repository  # noqa: E501
        """
        pass

    def test_list(self):
        """Test case for list

        List python repositorys  # noqa: E501
        """
        pass

    def test_modify(self):
        """Test case for modify

        Modify Repository Content  # noqa: E501
        """
        pass

    def test_partial_update(self):
        """Test case for partial_update

        Update a python repository  # noqa: E501
        """
        pass

    def test_read(self):
        """Test case for read

        Inspect a python repository  # noqa: E501
        """
        pass

    def test_sync(self):
        """Test case for sync

        Sync from remote  # noqa: E501
        """
        pass

    def test_update(self):
        """Test case for update

        Update a python repository  # noqa: E501
        """
        pass


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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pulp_python_client-3.4.0 test/test_repositories_python_api.py