Sha256: d4e4f9f24d604b94fa9c8d08a13dcab51fedc903438eae9703e6219612b4c295
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 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_ansible from pulpcore.client.pulp_ansible.api.content_collection_versions_api import ContentCollectionVersionsApi # noqa: E501 from pulpcore.client.pulp_ansible.rest import ApiException class TestContentCollectionVersionsApi(unittest.TestCase): """ContentCollectionVersionsApi unit test stubs""" def setUp(self): self.api = pulpcore.client.pulp_ansible.api.content_collection_versions_api.ContentCollectionVersionsApi() # noqa: E501 def tearDown(self): pass def test_create(self): """Test case for create Create a collection version # noqa: E501 """ pass def test_list(self): """Test case for list List collection versions # noqa: E501 """ pass def test_read(self): """Test case for read Inspect a collection version # noqa: E501 """ pass if __name__ == '__main__': unittest.main()
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pulp_ansible_client-0.8.0 | test/test_content_collection_versions_api.py |