40 lines
894 B
Python
40 lines
894 B
Python
"""
|
|
Flamenco manager
|
|
|
|
Render Farm manager API # noqa: E501
|
|
|
|
The version of the OpenAPI document: 1.0.0
|
|
Generated by: https://openapi-generator.tech
|
|
"""
|
|
|
|
|
|
import sys
|
|
import unittest
|
|
|
|
import flamenco.manager
|
|
from flamenco.manager.model.job_metadata import JobMetadata
|
|
from flamenco.manager.model.job_settings import JobSettings
|
|
globals()['JobMetadata'] = JobMetadata
|
|
globals()['JobSettings'] = JobSettings
|
|
from flamenco.manager.model.submitted_job import SubmittedJob
|
|
|
|
|
|
class TestSubmittedJob(unittest.TestCase):
|
|
"""SubmittedJob unit test stubs"""
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def testSubmittedJob(self):
|
|
"""Test SubmittedJob"""
|
|
# FIXME: construct object with mandatory attributes with example values
|
|
# model = SubmittedJob() # noqa: E501
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|