36 lines
731 B
Python
36 lines
731 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.configuration_meta import ConfigurationMeta
|
|
|
|
|
|
class TestConfigurationMeta(unittest.TestCase):
|
|
"""ConfigurationMeta unit test stubs"""
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def testConfigurationMeta(self):
|
|
"""Test ConfigurationMeta"""
|
|
# FIXME: construct object with mandatory attributes with example values
|
|
# model = ConfigurationMeta() # noqa: E501
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|