We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79d9a96 commit a77b396Copy full SHA for a77b396
setup.cfg
@@ -0,0 +1,2 @@
1
+[metadata]
2
+description-file = README.md
tempoapiclient/tests/__init__.py
tempoapiclient/tests/test.py
@@ -0,0 +1,13 @@
+from unittest import TestCase
+
3
+import tempoapiclient
4
5
+class TestModule(TestCase):
6
+ def test_client_creation(self):
7
+ from tempoapiclient import client
8
9
+ tempo = tempoapiclient.client.Tempo(
10
+ auth_token="<your_tempo_api_key>",
11
+ base_url="https://api.tempo.io/core/3")
12
13
+ self.assertTrue(isinstance(tempo, tempoapiclient.Client.Tempo))
0 commit comments