mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
60b0ae35e5
* Update competition-test-api to v1.2-rc4 * orchestrator: update API to v1.3.0
46 lines
989 B
Python
46 lines
989 B
Python
# coding: utf-8
|
|
|
|
"""
|
|
Example Competition API
|
|
|
|
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
|
|
The version of the OpenAPI document: 1.3.0
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
|
|
Do not edit the class manually.
|
|
""" # noqa: E501
|
|
|
|
|
|
import unittest
|
|
|
|
from buttercup.orchestrator.competition_api_client.api.patch_api import PatchApi
|
|
|
|
|
|
class TestPatchApi(unittest.TestCase):
|
|
"""PatchApi unit test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = PatchApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_v1_task_task_id_patch_patch_id_get(self) -> None:
|
|
"""Test case for v1_task_task_id_patch_patch_id_get
|
|
|
|
Patch Status
|
|
"""
|
|
pass
|
|
|
|
def test_v1_task_task_id_patch_post(self) -> None:
|
|
"""Test case for v1_task_task_id_patch_post
|
|
|
|
Submit Patch
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|