Sha256: e5101cf781c77ab133e5b552290acd153c93c91695183c13643e64ff25eed9c5

Contents?: true

Size: 1.6 KB

Versions: 2

Compression:

Stored size: 1.6 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_maven
from pulpcore.client.pulp_maven.api.distributions_maven_api import DistributionsMavenApi  # noqa: E501
from pulpcore.client.pulp_maven.rest import ApiException


class TestDistributionsMavenApi(unittest.TestCase):
    """DistributionsMavenApi unit test stubs"""

    def setUp(self):
        self.api = pulpcore.client.pulp_maven.api.distributions_maven_api.DistributionsMavenApi()  # noqa: E501

    def tearDown(self):
        pass

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

        Create a maven distribution  # noqa: E501
        """
        pass

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

        Delete a maven distribution  # noqa: E501
        """
        pass

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

        List maven distributions  # noqa: E501
        """
        pass

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

        Update a maven distribution  # noqa: E501
        """
        pass

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

        Inspect a maven distribution  # noqa: E501
        """
        pass

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

        Update a maven distribution  # noqa: E501
        """
        pass


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_distributions_maven_api.py
pulp_maven_client-0.3.0 test/test_distributions_maven_api.py