diff options
| author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-11 14:54:59 -0800 | 
|---|---|---|
| committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-11 14:54:59 -0800 | 
| commit | ee938e9edc9abfc33cdef6dc716eff89aceb5ca6 (patch) | |
| tree | f13c3f43e894e4f671db0e19f972ac21442edbb7 /python_client/tests | |
| parent | cfff2da3eb14a32c6942c043113b530b67b316c9 (diff) | |
| download | fatcat-ee938e9edc9abfc33cdef6dc716eff89aceb5ca6.tar.gz fatcat-ee938e9edc9abfc33cdef6dc716eff89aceb5ca6.zip  | |
codegen python
Diffstat (limited to 'python_client/tests')
| -rw-r--r-- | python_client/tests/codegen/test_default_api.py | 34 | ||||
| -rw-r--r-- | python_client/tests/codegen/test_editgroup_annotation.py | 40 | 
2 files changed, 72 insertions, 2 deletions
diff --git a/python_client/tests/codegen/test_default_api.py b/python_client/tests/codegen/test_default_api.py index 9a632824..baec7dfd 100644 --- a/python_client/tests/codegen/test_default_api.py +++ b/python_client/tests/codegen/test_default_api.py @@ -77,6 +77,12 @@ class TestDefaultApi(unittest.TestCase):          """          pass +    def test_create_editgroup_annotation(self): +        """Test case for create_editgroup_annotation + +        """ +        pass +      def test_create_file(self):          """Test case for create_file @@ -305,14 +311,32 @@ class TestDefaultApi(unittest.TestCase):          """          pass +    def test_get_editgroup_annotations(self): +        """Test case for get_editgroup_annotations + +        """ +        pass + +    def test_get_editgroups_reviewable(self): +        """Test case for get_editgroups_reviewable + +        """ +        pass +      def test_get_editor(self):          """Test case for get_editor          """          pass -    def test_get_editor_changelog(self): -        """Test case for get_editor_changelog +    def test_get_editor_annotations(self): +        """Test case for get_editor_annotations + +        """ +        pass + +    def test_get_editor_editgroups(self): +        """Test case for get_editor_editgroups          """          pass @@ -527,6 +551,12 @@ class TestDefaultApi(unittest.TestCase):          """          pass +    def test_update_editgroup(self): +        """Test case for update_editgroup + +        """ +        pass +      def test_update_editor(self):          """Test case for update_editor diff --git a/python_client/tests/codegen/test_editgroup_annotation.py b/python_client/tests/codegen/test_editgroup_annotation.py new file mode 100644 index 00000000..2cd8f4cc --- /dev/null +++ b/python_client/tests/codegen/test_editgroup_annotation.py @@ -0,0 +1,40 @@ +# coding: utf-8 + +""" +    fatcat + +    A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata  # noqa: E501 + +    OpenAPI spec version: 0.1.0 +     +    Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +from __future__ import absolute_import + +import unittest + +import fatcat_client +from fatcat_client.models.editgroup_annotation import EditgroupAnnotation  # noqa: E501 +from fatcat_client.rest import ApiException + + +class TestEditgroupAnnotation(unittest.TestCase): +    """EditgroupAnnotation unit test stubs""" + +    def setUp(self): +        pass + +    def tearDown(self): +        pass + +    def testEditgroupAnnotation(self): +        """Test EditgroupAnnotation""" +        # FIXME: construct object with mandatory attributes with example values +        # model = fatcat_client.models.editgroup_annotation.EditgroupAnnotation()  # noqa: E501 +        pass + + +if __name__ == '__main__': +    unittest.main()  | 
