Coverage for mindsdb / integrations / handlers / dropbox_handler / tests / test_dropbox_handler.py: 0%
11 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
1import unittest
2from mindsdb.integrations.handlers.dropbox_handler.dropbox_handler import DropboxHandler
5class DropboxHandlerTest(unittest.TestCase):
6 @classmethod
7 def setUpClass(cls):
8 cls.kwargs = {
9 "access_token": "ai.L-wqp3eP6r4cSWVklkKAdTNZ3VAuQjWuZMvIs1BzKvZNVW07rKbVNi5HbxvLc9q9D6qSfsf5VTsqYsNPGUkqSJBlpkr88gNboUNuhITmJG9mVw-Olniu4MO3BWVbEIphVxXxxxCd677Y",
10 }
11 cls.handler = DropboxHandler("test_dropbox_handler", cls.kwargs)
13 def test_0_check_connection(self):
14 assert self.handler.check_connection()
17if __name__ == "__main__":
18 unittest.main()