Sha256: 67a8f956aab6933deec958c489915b94034db081f08d2670338f8ca74f5d55d9
Contents?: true
Size: 1.62 KB
Versions: 1
Compression:
Stored size: 1.62 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 datetime import pulpcore.client.pulp_ansible from pulpcore.client.pulp_ansible.models.artifact_ref_response import ArtifactRefResponse # noqa: E501 from pulpcore.client.pulp_ansible.rest import ApiException class TestArtifactRefResponse(unittest.TestCase): """ArtifactRefResponse unit test stubs""" def setUp(self): pass def tearDown(self): pass def make_instance(self, include_optional): """Test ArtifactRefResponse include_option is a boolean, when False only required params are included, when True both required and optional params are included """ # model = pulpcore.client.pulp_ansible.models.artifact_ref_response.ArtifactRefResponse() # noqa: E501 if include_optional : return ArtifactRefResponse( filename = '0', sha256 = '0', size = 56 ) else : return ArtifactRefResponse( filename = '0', sha256 = '0', size = 56, ) def testArtifactRefResponse(self): """Test ArtifactRefResponse""" inst_req_only = self.make_instance(include_optional=False) inst_req_and_optional = self.make_instance(include_optional=True) 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_artifact_ref_response.py |