diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-14 13:42:48 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-14 13:42:48 -0700 |
commit | 3ee54189b665d37933b6108fb85b28bb823dac4a (patch) | |
tree | 354f40d0d3258ea30c811cfb200ccb231c013107 /python_client/tests/codegen/test_fileset_url.py | |
parent | 1337f7ae5c27983c732dd86bf1f11c04918eee62 (diff) | |
download | fatcat-3ee54189b665d37933b6108fb85b28bb823dac4a.tar.gz fatcat-3ee54189b665d37933b6108fb85b28bb823dac4a.zip |
python codegen
Diffstat (limited to 'python_client/tests/codegen/test_fileset_url.py')
-rw-r--r-- | python_client/tests/codegen/test_fileset_url.py | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/python_client/tests/codegen/test_fileset_url.py b/python_client/tests/codegen/test_fileset_url.py new file mode 100644 index 00000000..1ae67c1c --- /dev/null +++ b/python_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.2.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.fileset_url import FilesetUrl # noqa: E501 +from fatcat_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_client.models.fileset_url.FilesetUrl() # noqa: E501 + pass + + +if __name__ == '__main__': + unittest.main() |