Sha256: e241f8866eb010cb4fc42fcd619b6d605a0393faf84f95a579baa1ccfbc948ab
Contents?: true
Size: 1.51 KB
Versions: 3
Compression:
Stored size: 1.51 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.remotes_uln_api import RemotesUlnApi # noqa: E501 from pulpcore.client.pulp_rpm.rest import ApiException class TestRemotesUlnApi(unittest.TestCase): """RemotesUlnApi unit test stubs""" def setUp(self): self.api = pulpcore.client.pulp_rpm.api.remotes_uln_api.RemotesUlnApi() # noqa: E501 def tearDown(self): pass def test_create(self): """Test case for create Create an uln remote # noqa: E501 """ pass def test_delete(self): """Test case for delete Delete an uln remote # noqa: E501 """ pass def test_list(self): """Test case for list List uln remotes # noqa: E501 """ pass def test_partial_update(self): """Test case for partial_update Update an uln remote # noqa: E501 """ pass def test_read(self): """Test case for read Inspect an uln remote # noqa: E501 """ pass def test_update(self): """Test case for update Update an uln remote # 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_remotes_uln_api.py |
pulp_rpm_client-3.13.1 | test/test_remotes_uln_api.py |
pulp_rpm_client-3.13.0 | test/test_remotes_uln_api.py |