50 lines
974 B
Python
50 lines
974 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 unittest
|
|
|
|
import flamenco.manager
|
|
from flamenco.manager.api.jobs_api import JobsApi # noqa: E501
|
|
|
|
|
|
class TestJobsApi(unittest.TestCase):
|
|
"""JobsApi unit test stubs"""
|
|
|
|
def setUp(self):
|
|
self.api = JobsApi() # noqa: E501
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def test_fetch_job(self):
|
|
"""Test case for fetch_job
|
|
|
|
Fetch info about the job. # noqa: E501
|
|
"""
|
|
pass
|
|
|
|
def test_get_job_types(self):
|
|
"""Test case for get_job_types
|
|
|
|
Get list of job types and their parameters. # noqa: E501
|
|
"""
|
|
pass
|
|
|
|
def test_submit_job(self):
|
|
"""Test case for submit_job
|
|
|
|
Submit a new job for Flamenco Manager to execute. # noqa: E501
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|