Sha256: 2cd765e0620d9478b8d2fa58e35a21268d1baf2eff9151f5354603a843fbcf53
Contents?: true
Size: 1.94 KB
Versions: 28
Compression:
Stored size: 1.94 KB
Contents
# coding: utf-8 """ Pulp 3 API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501 The version of the OpenAPI document: v3 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import unittest import datetime import pulpcore.client.pulp_2to3_migration from pulpcore.client.pulp_2to3_migration.models.pulp2to3_migration_migration_plan_read import Pulp2to3MigrationMigrationPlanRead # noqa: E501 from pulpcore.client.pulp_2to3_migration.rest import ApiException class TestPulp2to3MigrationMigrationPlanRead(unittest.TestCase): """Pulp2to3MigrationMigrationPlanRead unit test stubs""" def setUp(self): pass def tearDown(self): pass def make_instance(self, include_optional): """Test Pulp2to3MigrationMigrationPlanRead 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_2to3_migration.models.pulp2to3_migration_migration_plan_read.Pulp2to3MigrationMigrationPlanRead() # noqa: E501 if include_optional : return Pulp2to3MigrationMigrationPlanRead( pulp_href = '0', pulp_created = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), plan = pulpcore.client.pulp_2to3_migration.models.plan.Plan() ) else : return Pulp2to3MigrationMigrationPlanRead( plan = pulpcore.client.pulp_2to3_migration.models.plan.Plan(), ) def testPulp2to3MigrationMigrationPlanRead(self): """Test Pulp2to3MigrationMigrationPlanRead""" 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
28 entries across 28 versions & 1 rubygems