Sha256: 72616e063b9b4a5ff0a8226b3dfe2406430b387f96f3ca15bd79aab9e64f0d92

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 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.content_artifact_api import ContentArtifactApi  # noqa: E501
from pulpcore.client.pulp_maven.rest import ApiException


class TestContentArtifactApi(unittest.TestCase):
    """ContentArtifactApi unit test stubs"""

    def setUp(self):
        self.api = pulpcore.client.pulp_maven.api.content_artifact_api.ContentArtifactApi()  # noqa: E501

    def tearDown(self):
        pass

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

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

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

        List maven artifacts  # noqa: E501
        """
        pass

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

        Inspect a maven artifact  # 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_content_artifact_api.py
pulp_maven_client-0.3.0 test/test_content_artifact_api.py