41 lines
828 B
Python
41 lines
828 B
Python
|
# coding: utf-8
|
||
|
|
||
|
"""
|
||
|
Gitea API.
|
||
|
|
||
|
This documentation describes the Gitea API. # noqa: E501
|
||
|
|
||
|
OpenAPI spec version: 1.1.1
|
||
|
|
||
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
||
|
"""
|
||
|
|
||
|
|
||
|
from __future__ import absolute_import
|
||
|
|
||
|
import unittest
|
||
|
|
||
|
import giteapython
|
||
|
from giteapython.models.permission import Permission # noqa: E501
|
||
|
from giteapython.rest import ApiException
|
||
|
|
||
|
|
||
|
class TestPermission(unittest.TestCase):
|
||
|
"""Permission unit test stubs"""
|
||
|
|
||
|
def setUp(self):
|
||
|
pass
|
||
|
|
||
|
def tearDown(self):
|
||
|
pass
|
||
|
|
||
|
def testPermission(self):
|
||
|
"""Test Permission"""
|
||
|
# FIXME: construct object with mandatory attributes with example values
|
||
|
# model = giteapython.models.permission.Permission() # noqa: E501
|
||
|
pass
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|