53 lines
1.3 KiB
Python
53 lines
1.3 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Kubeflow Pipelines API
|
|
|
|
This file contains REST API specification for Kubeflow Pipelines. The file is autogenerated from the swagger definition.
|
|
|
|
Contact: kubeflow-pipelines@google.com
|
|
Generated by: https://openapi-generator.tech
|
|
"""
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import unittest
|
|
import datetime
|
|
|
|
import kfp_server_api
|
|
from kfp_server_api.models.api_url import ApiUrl # noqa: E501
|
|
from kfp_server_api.rest import ApiException
|
|
|
|
class TestApiUrl(unittest.TestCase):
|
|
"""ApiUrl unit test stubs"""
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def make_instance(self, include_optional):
|
|
"""Test ApiUrl
|
|
include_option is a boolean, when False only required
|
|
params are included, when True both required and
|
|
optional params are included """
|
|
# model = kfp_server_api.models.api_url.ApiUrl() # noqa: E501
|
|
if include_optional :
|
|
return ApiUrl(
|
|
pipeline_url = '0'
|
|
)
|
|
else :
|
|
return ApiUrl(
|
|
)
|
|
|
|
def testApiUrl(self):
|
|
"""Test ApiUrl"""
|
|
inst_req_only = self.make_instance(include_optional=False)
|
|
inst_req_and_optional = self.make_instance(include_optional=True)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|