aboutsummaryrefslogtreecommitdiffstats
path: root/python_openapi_client/tests
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-09-05 18:44:40 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-09-05 18:44:40 -0700
commit070069cb6eb71b92a9c4e46f3d4cfabb67f4eb3f (patch)
tree82f82c5586bd97c2ed5c4082f85d571f23a4182b /python_openapi_client/tests
parent180bb7366587bc4150108e4e0274806ce285d6a6 (diff)
downloadfatcat-070069cb6eb71b92a9c4e46f3d4cfabb67f4eb3f.tar.gz
fatcat-070069cb6eb71b92a9c4e46f3d4cfabb67f4eb3f.zip
rename python client to 'fatcat-openapi-client'
Diffstat (limited to 'python_openapi_client/tests')
-rw-r--r--python_openapi_client/tests/codegen/__init__.py0
-rw-r--r--python_openapi_client/tests/codegen/test_auth_oidc.py40
-rw-r--r--python_openapi_client/tests/codegen/test_auth_oidc_result.py40
-rw-r--r--python_openapi_client/tests/codegen/test_changelog_entry.py40
-rw-r--r--python_openapi_client/tests/codegen/test_container_auto_batch.py40
-rw-r--r--python_openapi_client/tests/codegen/test_container_entity.py40
-rw-r--r--python_openapi_client/tests/codegen/test_creator_auto_batch.py40
-rw-r--r--python_openapi_client/tests/codegen/test_creator_entity.py40
-rw-r--r--python_openapi_client/tests/codegen/test_default_api.py598
-rw-r--r--python_openapi_client/tests/codegen/test_editgroup.py40
-rw-r--r--python_openapi_client/tests/codegen/test_editgroup_annotation.py40
-rw-r--r--python_openapi_client/tests/codegen/test_editgroup_edits.py40
-rw-r--r--python_openapi_client/tests/codegen/test_editor.py40
-rw-r--r--python_openapi_client/tests/codegen/test_entity_edit.py40
-rw-r--r--python_openapi_client/tests/codegen/test_entity_history_entry.py40
-rw-r--r--python_openapi_client/tests/codegen/test_error_response.py40
-rw-r--r--python_openapi_client/tests/codegen/test_file_auto_batch.py40
-rw-r--r--python_openapi_client/tests/codegen/test_file_entity.py40
-rw-r--r--python_openapi_client/tests/codegen/test_file_url.py40
-rw-r--r--python_openapi_client/tests/codegen/test_fileset_auto_batch.py40
-rw-r--r--python_openapi_client/tests/codegen/test_fileset_entity.py40
-rw-r--r--python_openapi_client/tests/codegen/test_fileset_file.py40
-rw-r--r--python_openapi_client/tests/codegen/test_fileset_url.py40
-rw-r--r--python_openapi_client/tests/codegen/test_release_abstract.py40
-rw-r--r--python_openapi_client/tests/codegen/test_release_auto_batch.py40
-rw-r--r--python_openapi_client/tests/codegen/test_release_contrib.py40
-rw-r--r--python_openapi_client/tests/codegen/test_release_entity.py40
-rw-r--r--python_openapi_client/tests/codegen/test_release_ext_ids.py40
-rw-r--r--python_openapi_client/tests/codegen/test_release_ref.py40
-rw-r--r--python_openapi_client/tests/codegen/test_success.py40
-rw-r--r--python_openapi_client/tests/codegen/test_webcapture_auto_batch.py40
-rw-r--r--python_openapi_client/tests/codegen/test_webcapture_cdx_line.py40
-rw-r--r--python_openapi_client/tests/codegen/test_webcapture_entity.py40
-rw-r--r--python_openapi_client/tests/codegen/test_webcapture_url.py40
-rw-r--r--python_openapi_client/tests/codegen/test_work_auto_batch.py40
-rw-r--r--python_openapi_client/tests/codegen/test_work_entity.py40
36 files changed, 1958 insertions, 0 deletions
diff --git a/python_openapi_client/tests/codegen/__init__.py b/python_openapi_client/tests/codegen/__init__.py
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/python_openapi_client/tests/codegen/__init__.py
diff --git a/python_openapi_client/tests/codegen/test_auth_oidc.py b/python_openapi_client/tests/codegen/test_auth_oidc.py
new file mode 100644
index 00000000..489cac61
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_auth_oidc.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.auth_oidc import AuthOidc # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestAuthOidc(unittest.TestCase):
+ """AuthOidc unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testAuthOidc(self):
+ """Test AuthOidc"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.auth_oidc.AuthOidc() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_auth_oidc_result.py b/python_openapi_client/tests/codegen/test_auth_oidc_result.py
new file mode 100644
index 00000000..5962d954
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_auth_oidc_result.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.auth_oidc_result import AuthOidcResult # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestAuthOidcResult(unittest.TestCase):
+ """AuthOidcResult unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testAuthOidcResult(self):
+ """Test AuthOidcResult"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.auth_oidc_result.AuthOidcResult() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_changelog_entry.py b/python_openapi_client/tests/codegen/test_changelog_entry.py
new file mode 100644
index 00000000..813307a6
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_changelog_entry.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.changelog_entry import ChangelogEntry # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestChangelogEntry(unittest.TestCase):
+ """ChangelogEntry unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testChangelogEntry(self):
+ """Test ChangelogEntry"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.changelog_entry.ChangelogEntry() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_container_auto_batch.py b/python_openapi_client/tests/codegen/test_container_auto_batch.py
new file mode 100644
index 00000000..8eba8a6d
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_container_auto_batch.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.container_auto_batch import ContainerAutoBatch # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestContainerAutoBatch(unittest.TestCase):
+ """ContainerAutoBatch unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testContainerAutoBatch(self):
+ """Test ContainerAutoBatch"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.container_auto_batch.ContainerAutoBatch() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_container_entity.py b/python_openapi_client/tests/codegen/test_container_entity.py
new file mode 100644
index 00000000..32771475
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_container_entity.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.container_entity import ContainerEntity # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestContainerEntity(unittest.TestCase):
+ """ContainerEntity unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testContainerEntity(self):
+ """Test ContainerEntity"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.container_entity.ContainerEntity() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_creator_auto_batch.py b/python_openapi_client/tests/codegen/test_creator_auto_batch.py
new file mode 100644
index 00000000..9181c098
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_creator_auto_batch.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.creator_auto_batch import CreatorAutoBatch # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestCreatorAutoBatch(unittest.TestCase):
+ """CreatorAutoBatch unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testCreatorAutoBatch(self):
+ """Test CreatorAutoBatch"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.creator_auto_batch.CreatorAutoBatch() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_creator_entity.py b/python_openapi_client/tests/codegen/test_creator_entity.py
new file mode 100644
index 00000000..2b55ff26
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_creator_entity.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.creator_entity import CreatorEntity # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestCreatorEntity(unittest.TestCase):
+ """CreatorEntity unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testCreatorEntity(self):
+ """Test CreatorEntity"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.creator_entity.CreatorEntity() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_default_api.py b/python_openapi_client/tests/codegen/test_default_api.py
new file mode 100644
index 00000000..3ea87237
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_default_api.py
@@ -0,0 +1,598 @@
+# coding: utf-8
+
+"""
+ fatcat
+
+ A scalable, versioned, API-oriented catalog of bibliographic entities and file metadata # noqa: E501
+
+ OpenAPI spec version: 0.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.api.default_api import DefaultApi # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestDefaultApi(unittest.TestCase):
+ """DefaultApi unit test stubs"""
+
+ def setUp(self):
+ self.api = fatcat_openapi_client.api.default_api.DefaultApi() # noqa: E501
+
+ def tearDown(self):
+ pass
+
+ def test_accept_editgroup(self):
+ """Test case for accept_editgroup
+
+ """
+ pass
+
+ def test_auth_check(self):
+ """Test case for auth_check
+
+ """
+ pass
+
+ def test_auth_oidc(self):
+ """Test case for auth_oidc
+
+ """
+ pass
+
+ def test_create_container(self):
+ """Test case for create_container
+
+ """
+ pass
+
+ def test_create_container_auto_batch(self):
+ """Test case for create_container_auto_batch
+
+ """
+ pass
+
+ def test_create_creator(self):
+ """Test case for create_creator
+
+ """
+ pass
+
+ def test_create_creator_auto_batch(self):
+ """Test case for create_creator_auto_batch
+
+ """
+ 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_create_file(self):
+ """Test case for create_file
+
+ """
+ pass
+
+ def test_create_file_auto_batch(self):
+ """Test case for create_file_auto_batch
+
+ """
+ pass
+
+ def test_create_fileset(self):
+ """Test case for create_fileset
+
+ """
+ pass
+
+ def test_create_fileset_auto_batch(self):
+ """Test case for create_fileset_auto_batch
+
+ """
+ pass
+
+ def test_create_release(self):
+ """Test case for create_release
+
+ """
+ pass
+
+ def test_create_release_auto_batch(self):
+ """Test case for create_release_auto_batch
+
+ """
+ pass
+
+ def test_create_webcapture(self):
+ """Test case for create_webcapture
+
+ """
+ pass
+
+ def test_create_webcapture_auto_batch(self):
+ """Test case for create_webcapture_auto_batch
+
+ """
+ pass
+
+ def test_create_work(self):
+ """Test case for create_work
+
+ """
+ pass
+
+ def test_create_work_auto_batch(self):
+ """Test case for create_work_auto_batch
+
+ """
+ pass
+
+ def test_delete_container(self):
+ """Test case for delete_container
+
+ """
+ pass
+
+ def test_delete_container_edit(self):
+ """Test case for delete_container_edit
+
+ """
+ pass
+
+ def test_delete_creator(self):
+ """Test case for delete_creator
+
+ """
+ pass
+
+ def test_delete_creator_edit(self):
+ """Test case for delete_creator_edit
+
+ """
+ pass
+
+ def test_delete_file(self):
+ """Test case for delete_file
+
+ """
+ pass
+
+ def test_delete_file_edit(self):
+ """Test case for delete_file_edit
+
+ """
+ pass
+
+ def test_delete_fileset(self):
+ """Test case for delete_fileset
+
+ """
+ pass
+
+ def test_delete_fileset_edit(self):
+ """Test case for delete_fileset_edit
+
+ """
+ pass
+
+ def test_delete_release(self):
+ """Test case for delete_release
+
+ """
+ pass
+
+ def test_delete_release_edit(self):
+ """Test case for delete_release_edit
+
+ """
+ pass
+
+ def test_delete_webcapture(self):
+ """Test case for delete_webcapture
+
+ """
+ pass
+
+ def test_delete_webcapture_edit(self):
+ """Test case for delete_webcapture_edit
+
+ """
+ pass
+
+ def test_delete_work(self):
+ """Test case for delete_work
+
+ """
+ pass
+
+ def test_delete_work_edit(self):
+ """Test case for delete_work_edit
+
+ """
+ pass
+
+ def test_get_changelog(self):
+ """Test case for get_changelog
+
+ """
+ pass
+
+ def test_get_changelog_entry(self):
+ """Test case for get_changelog_entry
+
+ """
+ pass
+
+ def test_get_container(self):
+ """Test case for get_container
+
+ """
+ pass
+
+ def test_get_container_edit(self):
+ """Test case for get_container_edit
+
+ """
+ pass
+
+ def test_get_container_history(self):
+ """Test case for get_container_history
+
+ """
+ pass
+
+ def test_get_container_redirects(self):
+ """Test case for get_container_redirects
+
+ """
+ pass
+
+ def test_get_container_revision(self):
+ """Test case for get_container_revision
+
+ """
+ pass
+
+ def test_get_creator(self):
+ """Test case for get_creator
+
+ """
+ pass
+
+ def test_get_creator_edit(self):
+ """Test case for get_creator_edit
+
+ """
+ pass
+
+ def test_get_creator_history(self):
+ """Test case for get_creator_history
+
+ """
+ pass
+
+ def test_get_creator_redirects(self):
+ """Test case for get_creator_redirects
+
+ """
+ pass
+
+ def test_get_creator_releases(self):
+ """Test case for get_creator_releases
+
+ """
+ pass
+
+ def test_get_creator_revision(self):
+ """Test case for get_creator_revision
+
+ """
+ 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_get_editor(self):
+ """Test case for get_editor
+
+ """
+ pass
+
+ 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
+
+ def test_get_file(self):
+ """Test case for get_file
+
+ """
+ pass
+
+ def test_get_file_edit(self):
+ """Test case for get_file_edit
+
+ """
+ pass
+
+ def test_get_file_history(self):
+ """Test case for get_file_history
+
+ """
+ pass
+
+ def test_get_file_redirects(self):
+ """Test case for get_file_redirects
+
+ """
+ pass
+
+ def test_get_file_revision(self):
+ """Test case for get_file_revision
+
+ """
+ pass
+
+ def test_get_fileset(self):
+ """Test case for get_fileset
+
+ """
+ pass
+
+ def test_get_fileset_edit(self):
+ """Test case for get_fileset_edit
+
+ """
+ pass
+
+ def test_get_fileset_history(self):
+ """Test case for get_fileset_history
+
+ """
+ pass
+
+ def test_get_fileset_redirects(self):
+ """Test case for get_fileset_redirects
+
+ """
+ pass
+
+ def test_get_fileset_revision(self):
+ """Test case for get_fileset_revision
+
+ """
+ pass
+
+ def test_get_release(self):
+ """Test case for get_release
+
+ """
+ pass
+
+ def test_get_release_edit(self):
+ """Test case for get_release_edit
+
+ """
+ pass
+
+ def test_get_release_files(self):
+ """Test case for get_release_files
+
+ """
+ pass
+
+ def test_get_release_filesets(self):
+ """Test case for get_release_filesets
+
+ """
+ pass
+
+ def test_get_release_history(self):
+ """Test case for get_release_history
+
+ """
+ pass
+
+ def test_get_release_redirects(self):
+ """Test case for get_release_redirects
+
+ """
+ pass
+
+ def test_get_release_revision(self):
+ """Test case for get_release_revision
+
+ """
+ pass
+
+ def test_get_release_webcaptures(self):
+ """Test case for get_release_webcaptures
+
+ """
+ pass
+
+ def test_get_webcapture(self):
+ """Test case for get_webcapture
+
+ """
+ pass
+
+ def test_get_webcapture_edit(self):
+ """Test case for get_webcapture_edit
+
+ """
+ pass
+
+ def test_get_webcapture_history(self):
+ """Test case for get_webcapture_history
+
+ """
+ pass
+
+ def test_get_webcapture_redirects(self):
+ """Test case for get_webcapture_redirects
+
+ """
+ pass
+
+ def test_get_webcapture_revision(self):
+ """Test case for get_webcapture_revision
+
+ """
+ pass
+
+ def test_get_work(self):
+ """Test case for get_work
+
+ """
+ pass
+
+ def test_get_work_edit(self):
+ """Test case for get_work_edit
+
+ """
+ pass
+
+ def test_get_work_history(self):
+ """Test case for get_work_history
+
+ """
+ pass
+
+ def test_get_work_redirects(self):
+ """Test case for get_work_redirects
+
+ """
+ pass
+
+ def test_get_work_releases(self):
+ """Test case for get_work_releases
+
+ """
+ pass
+
+ def test_get_work_revision(self):
+ """Test case for get_work_revision
+
+ """
+ pass
+
+ def test_lookup_container(self):
+ """Test case for lookup_container
+
+ """
+ pass
+
+ def test_lookup_creator(self):
+ """Test case for lookup_creator
+
+ """
+ pass
+
+ def test_lookup_file(self):
+ """Test case for lookup_file
+
+ """
+ pass
+
+ def test_lookup_release(self):
+ """Test case for lookup_release
+
+ """
+ pass
+
+ def test_update_container(self):
+ """Test case for update_container
+
+ """
+ pass
+
+ def test_update_creator(self):
+ """Test case for update_creator
+
+ """
+ pass
+
+ def test_update_editgroup(self):
+ """Test case for update_editgroup
+
+ """
+ pass
+
+ def test_update_editor(self):
+ """Test case for update_editor
+
+ """
+ pass
+
+ def test_update_file(self):
+ """Test case for update_file
+
+ """
+ pass
+
+ def test_update_fileset(self):
+ """Test case for update_fileset
+
+ """
+ pass
+
+ def test_update_release(self):
+ """Test case for update_release
+
+ """
+ pass
+
+ def test_update_webcapture(self):
+ """Test case for update_webcapture
+
+ """
+ pass
+
+ def test_update_work(self):
+ """Test case for update_work
+
+ """
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_editgroup.py b/python_openapi_client/tests/codegen/test_editgroup.py
new file mode 100644
index 00000000..41282829
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_editgroup.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.editgroup import Editgroup # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestEditgroup(unittest.TestCase):
+ """Editgroup unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testEditgroup(self):
+ """Test Editgroup"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.editgroup.Editgroup() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_editgroup_annotation.py b/python_openapi_client/tests/codegen/test_editgroup_annotation.py
new file mode 100644
index 00000000..4e4f3e25
--- /dev/null
+++ b/python_openapi_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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.editgroup_annotation import EditgroupAnnotation # noqa: E501
+from fatcat_openapi_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_openapi_client.models.editgroup_annotation.EditgroupAnnotation() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_editgroup_edits.py b/python_openapi_client/tests/codegen/test_editgroup_edits.py
new file mode 100644
index 00000000..5d3cebe8
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_editgroup_edits.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.editgroup_edits import EditgroupEdits # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestEditgroupEdits(unittest.TestCase):
+ """EditgroupEdits unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testEditgroupEdits(self):
+ """Test EditgroupEdits"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.editgroup_edits.EditgroupEdits() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_editor.py b/python_openapi_client/tests/codegen/test_editor.py
new file mode 100644
index 00000000..65064564
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_editor.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.editor import Editor # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestEditor(unittest.TestCase):
+ """Editor unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testEditor(self):
+ """Test Editor"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.editor.Editor() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_entity_edit.py b/python_openapi_client/tests/codegen/test_entity_edit.py
new file mode 100644
index 00000000..cc097c3d
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_entity_edit.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.entity_edit import EntityEdit # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestEntityEdit(unittest.TestCase):
+ """EntityEdit unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testEntityEdit(self):
+ """Test EntityEdit"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.entity_edit.EntityEdit() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_entity_history_entry.py b/python_openapi_client/tests/codegen/test_entity_history_entry.py
new file mode 100644
index 00000000..7a6e7146
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_entity_history_entry.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.entity_history_entry import EntityHistoryEntry # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestEntityHistoryEntry(unittest.TestCase):
+ """EntityHistoryEntry unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testEntityHistoryEntry(self):
+ """Test EntityHistoryEntry"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.entity_history_entry.EntityHistoryEntry() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_error_response.py b/python_openapi_client/tests/codegen/test_error_response.py
new file mode 100644
index 00000000..04f8baa2
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_error_response.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.error_response import ErrorResponse # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestErrorResponse(unittest.TestCase):
+ """ErrorResponse unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testErrorResponse(self):
+ """Test ErrorResponse"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.error_response.ErrorResponse() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_file_auto_batch.py b/python_openapi_client/tests/codegen/test_file_auto_batch.py
new file mode 100644
index 00000000..407f60fc
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_file_auto_batch.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.file_auto_batch import FileAutoBatch # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestFileAutoBatch(unittest.TestCase):
+ """FileAutoBatch unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testFileAutoBatch(self):
+ """Test FileAutoBatch"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.file_auto_batch.FileAutoBatch() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_file_entity.py b/python_openapi_client/tests/codegen/test_file_entity.py
new file mode 100644
index 00000000..790a3280
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_file_entity.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.file_entity import FileEntity # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestFileEntity(unittest.TestCase):
+ """FileEntity unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testFileEntity(self):
+ """Test FileEntity"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.file_entity.FileEntity() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_file_url.py b/python_openapi_client/tests/codegen/test_file_url.py
new file mode 100644
index 00000000..8b15fffa
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_file_url.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.file_url import FileUrl # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestFileUrl(unittest.TestCase):
+ """FileUrl unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testFileUrl(self):
+ """Test FileUrl"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.file_url.FileUrl() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_fileset_auto_batch.py b/python_openapi_client/tests/codegen/test_fileset_auto_batch.py
new file mode 100644
index 00000000..4b28e4c1
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_fileset_auto_batch.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.fileset_auto_batch import FilesetAutoBatch # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestFilesetAutoBatch(unittest.TestCase):
+ """FilesetAutoBatch unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testFilesetAutoBatch(self):
+ """Test FilesetAutoBatch"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.fileset_auto_batch.FilesetAutoBatch() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_fileset_entity.py b/python_openapi_client/tests/codegen/test_fileset_entity.py
new file mode 100644
index 00000000..629c901f
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_fileset_entity.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.fileset_entity import FilesetEntity # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestFilesetEntity(unittest.TestCase):
+ """FilesetEntity unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testFilesetEntity(self):
+ """Test FilesetEntity"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.fileset_entity.FilesetEntity() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_fileset_file.py b/python_openapi_client/tests/codegen/test_fileset_file.py
new file mode 100644
index 00000000..99cc6172
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_fileset_file.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.fileset_file import FilesetFile # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestFilesetFile(unittest.TestCase):
+ """FilesetFile unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testFilesetFile(self):
+ """Test FilesetFile"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.fileset_file.FilesetFile() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_fileset_url.py b/python_openapi_client/tests/codegen/test_fileset_url.py
new file mode 100644
index 00000000..657c3568
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_fileset_url.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.fileset_url import FilesetUrl # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestFilesetUrl(unittest.TestCase):
+ """FilesetUrl unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testFilesetUrl(self):
+ """Test FilesetUrl"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.fileset_url.FilesetUrl() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_release_abstract.py b/python_openapi_client/tests/codegen/test_release_abstract.py
new file mode 100644
index 00000000..50b250bb
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_release_abstract.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.release_abstract import ReleaseAbstract # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestReleaseAbstract(unittest.TestCase):
+ """ReleaseAbstract unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testReleaseAbstract(self):
+ """Test ReleaseAbstract"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.release_abstract.ReleaseAbstract() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_release_auto_batch.py b/python_openapi_client/tests/codegen/test_release_auto_batch.py
new file mode 100644
index 00000000..9d9ab7e4
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_release_auto_batch.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.release_auto_batch import ReleaseAutoBatch # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestReleaseAutoBatch(unittest.TestCase):
+ """ReleaseAutoBatch unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testReleaseAutoBatch(self):
+ """Test ReleaseAutoBatch"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.release_auto_batch.ReleaseAutoBatch() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_release_contrib.py b/python_openapi_client/tests/codegen/test_release_contrib.py
new file mode 100644
index 00000000..4c9daf7d
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_release_contrib.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.release_contrib import ReleaseContrib # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestReleaseContrib(unittest.TestCase):
+ """ReleaseContrib unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testReleaseContrib(self):
+ """Test ReleaseContrib"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.release_contrib.ReleaseContrib() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_release_entity.py b/python_openapi_client/tests/codegen/test_release_entity.py
new file mode 100644
index 00000000..bee996c1
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_release_entity.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.release_entity import ReleaseEntity # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestReleaseEntity(unittest.TestCase):
+ """ReleaseEntity unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testReleaseEntity(self):
+ """Test ReleaseEntity"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.release_entity.ReleaseEntity() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_release_ext_ids.py b/python_openapi_client/tests/codegen/test_release_ext_ids.py
new file mode 100644
index 00000000..9dce44ee
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_release_ext_ids.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.release_ext_ids import ReleaseExtIds # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestReleaseExtIds(unittest.TestCase):
+ """ReleaseExtIds unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testReleaseExtIds(self):
+ """Test ReleaseExtIds"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.release_ext_ids.ReleaseExtIds() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_release_ref.py b/python_openapi_client/tests/codegen/test_release_ref.py
new file mode 100644
index 00000000..33574195
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_release_ref.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.release_ref import ReleaseRef # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestReleaseRef(unittest.TestCase):
+ """ReleaseRef unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testReleaseRef(self):
+ """Test ReleaseRef"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.release_ref.ReleaseRef() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_success.py b/python_openapi_client/tests/codegen/test_success.py
new file mode 100644
index 00000000..f661977a
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_success.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.success import Success # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestSuccess(unittest.TestCase):
+ """Success unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testSuccess(self):
+ """Test Success"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.success.Success() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_webcapture_auto_batch.py b/python_openapi_client/tests/codegen/test_webcapture_auto_batch.py
new file mode 100644
index 00000000..766294ea
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_webcapture_auto_batch.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.webcapture_auto_batch import WebcaptureAutoBatch # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestWebcaptureAutoBatch(unittest.TestCase):
+ """WebcaptureAutoBatch unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testWebcaptureAutoBatch(self):
+ """Test WebcaptureAutoBatch"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.webcapture_auto_batch.WebcaptureAutoBatch() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_webcapture_cdx_line.py b/python_openapi_client/tests/codegen/test_webcapture_cdx_line.py
new file mode 100644
index 00000000..4706395d
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_webcapture_cdx_line.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.webcapture_cdx_line import WebcaptureCdxLine # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestWebcaptureCdxLine(unittest.TestCase):
+ """WebcaptureCdxLine unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testWebcaptureCdxLine(self):
+ """Test WebcaptureCdxLine"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.webcapture_cdx_line.WebcaptureCdxLine() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_webcapture_entity.py b/python_openapi_client/tests/codegen/test_webcapture_entity.py
new file mode 100644
index 00000000..d96c96e4
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_webcapture_entity.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.webcapture_entity import WebcaptureEntity # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestWebcaptureEntity(unittest.TestCase):
+ """WebcaptureEntity unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testWebcaptureEntity(self):
+ """Test WebcaptureEntity"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.webcapture_entity.WebcaptureEntity() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_webcapture_url.py b/python_openapi_client/tests/codegen/test_webcapture_url.py
new file mode 100644
index 00000000..fc15736e
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_webcapture_url.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.webcapture_url import WebcaptureUrl # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestWebcaptureUrl(unittest.TestCase):
+ """WebcaptureUrl unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testWebcaptureUrl(self):
+ """Test WebcaptureUrl"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.webcapture_url.WebcaptureUrl() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_work_auto_batch.py b/python_openapi_client/tests/codegen/test_work_auto_batch.py
new file mode 100644
index 00000000..16cbe693
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_work_auto_batch.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.work_auto_batch import WorkAutoBatch # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestWorkAutoBatch(unittest.TestCase):
+ """WorkAutoBatch unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testWorkAutoBatch(self):
+ """Test WorkAutoBatch"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.work_auto_batch.WorkAutoBatch() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python_openapi_client/tests/codegen/test_work_entity.py b/python_openapi_client/tests/codegen/test_work_entity.py
new file mode 100644
index 00000000..5a0936a9
--- /dev/null
+++ b/python_openapi_client/tests/codegen/test_work_entity.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.3.0
+
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
+"""
+
+
+from __future__ import absolute_import
+
+import unittest
+
+import fatcat_openapi_client
+from fatcat_openapi_client.models.work_entity import WorkEntity # noqa: E501
+from fatcat_openapi_client.rest import ApiException
+
+
+class TestWorkEntity(unittest.TestCase):
+ """WorkEntity unit test stubs"""
+
+ def setUp(self):
+ pass
+
+ def tearDown(self):
+ pass
+
+ def testWorkEntity(self):
+ """Test WorkEntity"""
+ # FIXME: construct object with mandatory attributes with example values
+ # model = fatcat_openapi_client.models.work_entity.WorkEntity() # noqa: E501
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()