From ee938e9edc9abfc33cdef6dc716eff89aceb5ca6 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Fri, 11 Jan 2019 14:54:59 -0800 Subject: codegen python --- python_client/tests/codegen/test_default_api.py | 34 ++++++++++++++++-- .../tests/codegen/test_editgroup_annotation.py | 40 ++++++++++++++++++++++ 2 files changed, 72 insertions(+), 2 deletions(-) create mode 100644 python_client/tests/codegen/test_editgroup_annotation.py (limited to 'python_client/tests') 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() -- cgit v1.2.3