aboutsummaryrefslogtreecommitdiffstats
path: root/python_openapi_client/tests/codegen/test_editgroups_api.py
diff options
context:
space:
mode:
Diffstat (limited to 'python_openapi_client/tests/codegen/test_editgroups_api.py')
-rw-r--r--python_openapi_client/tests/codegen/test_editgroups_api.py71
1 files changed, 71 insertions, 0 deletions
diff --git a/python_openapi_client/tests/codegen/test_editgroups_api.py b/python_openapi_client/tests/codegen/test_editgroups_api.py
new file mode 100644
index 00000000..cb7ee184
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_editgroups_api.py
@@ -0,0 +1,71 @@
+"""
+ fatcat
+
+ Fatcat is a scalable, versioned, API-oriented catalog of bibliographic entities and file metadata. # noqa: E501
+
+ The version of the OpenAPI document: 0.5.0
+ Contact: webservices@archive.org
+ Generated by: https://openapi-generator.tech
+"""
+
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.api.editgroups_api import EditgroupsApi # noqa: E501
+
+
+class TestEditgroupsApi(unittest.TestCase):
+ """EditgroupsApi unit test stubs"""
+
+ def setUp(self):
+ self.api = EditgroupsApi() # noqa: E501
+
+ def tearDown(self):
+ pass
+
+ def test_accept_editgroup(self):
+ """Test case for accept_editgroup
+
+ """
+ pass
+
+ def test_create_editgroup(self):
+ """Test case for create_editgroup
+
+ """
+ pass
+
+ def test_create_editgroup_annotation(self):
+ """Test case for create_editgroup_annotation
+
+ """
+ pass
+
+ def test_get_editgroup(self):
+ """Test case for get_editgroup
+
+ """
+ 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_update_editgroup(self):
+ """Test case for update_editgroup
+
+ """
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()