github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python-legacy/test/test_stats_events_list.py (about) 1 """ 2 lakeFS API 3 4 lakeFS HTTP API # noqa: E501 5 6 The version of the OpenAPI document: 1.0.0 7 Contact: services@treeverse.io 8 Generated by: https://openapi-generator.tech 9 """ 10 11 12 import sys 13 import unittest 14 15 import lakefs_client 16 from lakefs_client.model.stats_event import StatsEvent 17 globals()['StatsEvent'] = StatsEvent 18 from lakefs_client.model.stats_events_list import StatsEventsList 19 20 21 class TestStatsEventsList(unittest.TestCase): 22 """StatsEventsList unit test stubs""" 23 24 def setUp(self): 25 pass 26 27 def tearDown(self): 28 pass 29 30 def testStatsEventsList(self): 31 """Test StatsEventsList""" 32 # FIXME: construct object with mandatory attributes with example values 33 # model = StatsEventsList() # noqa: E501 34 pass 35 36 37 if __name__ == '__main__': 38 unittest.main()