Sha256: 963462bb8aa0eecaa7eacc6c503c812c3b055acc1ab80d056fbf35fb124f8cba
Contents?: true
Size: 1.51 KB
Versions: 41
Compression:
Stored size: 1.51 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.migration_plan_run import MigrationPlanRun # noqa: E501 from pulpcore.client.pulp_2to3_migration.rest import ApiException class TestMigrationPlanRun(unittest.TestCase): """MigrationPlanRun unit test stubs""" def setUp(self): pass def tearDown(self): pass def make_instance(self, include_optional): """Test MigrationPlanRun 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.migration_plan_run.MigrationPlanRun() # noqa: E501 if include_optional : return MigrationPlanRun( validate = True, dry_run = True ) else : return MigrationPlanRun( ) def testMigrationPlanRun(self): """Test MigrationPlanRun""" 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
41 entries across 41 versions & 1 rubygems