Sha256: cf6b8f39e954b72a33057bf761d9ce9315c0453471cfc0d941345e2b4ab24a13
Contents?: true
Size: 1.29 KB
Versions: 3
Compression:
Stored size: 1.29 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_rpm from pulpcore.client.pulp_rpm.api.publications_rpm_api import PublicationsRpmApi # noqa: E501 from pulpcore.client.pulp_rpm.rest import ApiException class TestPublicationsRpmApi(unittest.TestCase): """PublicationsRpmApi unit test stubs""" def setUp(self): self.api = pulpcore.client.pulp_rpm.api.publications_rpm_api.PublicationsRpmApi() # noqa: E501 def tearDown(self): pass def test_create(self): """Test case for create Create a rpm publication # noqa: E501 """ pass def test_delete(self): """Test case for delete Delete a rpm publication # noqa: E501 """ pass def test_list(self): """Test case for list List rpm publications # noqa: E501 """ pass def test_read(self): """Test case for read Inspect a rpm publication # noqa: E501 """ pass if __name__ == '__main__': unittest.main()
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pulp_rpm_client-3.13.2 | test/test_publications_rpm_api.py |
pulp_rpm_client-3.13.1 | test/test_publications_rpm_api.py |
pulp_rpm_client-3.13.0 | test/test_publications_rpm_api.py |