-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathtest_audit_log_api_api.py
More file actions
40 lines (25 loc) · 967 Bytes
/
Copy pathtest_audit_log_api_api.py
File metadata and controls
40 lines (25 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# coding: utf-8
"""
Asana
This is the interface for interacting with the [Asana Platform](https://developers.asana.com). Our API reference is generated from our [OpenAPI spec] (https://raw.githubusercontent.com/Asana/openapi/master/defs/asana_oas.yaml). # noqa: E501
OpenAPI spec version: 1.0
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import unittest
import asana
from asana.api.audit_log_api_api import AuditLogAPIApi # noqa: E501
from asana.rest import ApiException
class TestAuditLogAPIApi(unittest.TestCase):
"""AuditLogAPIApi unit test stubs"""
def setUp(self):
self.api = AuditLogAPIApi() # noqa: E501
def tearDown(self):
pass
def test_get_audit_log_events(self):
"""Test case for get_audit_log_events
Get audit log events # noqa: E501
"""
pass
if __name__ == '__main__':
unittest.main()