aboutsummaryrefslogtreecommitdiffstats
path: root/python_openapi_client/tests/codegen/test_editgroups_api.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2022-08-11 19:23:40 -0700
committerBryan Newbold <bnewbold@robocracy.org>2022-08-11 19:23:40 -0700
commitef79f4d157fc576eeb0f54e01d827f277de35708 (patch)
treea33f1249fa386ab7970cd677be840c15924dc319 /python_openapi_client/tests/codegen/test_editgroups_api.py
parent2c4ea805675cee28fbbfae773420a853820f875d (diff)
downloadfatcat-ef79f4d157fc576eeb0f54e01d827f277de35708.tar.gz
fatcat-ef79f4d157fc576eeb0f54e01d827f277de35708.zip
codegen python client using newer generator (v6.0.1)
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()