Repository URL to install this package:
|
Version:
2.0.0-beta3-2-armbian20.08.0-trunk1 ▾
|
import unittest
from influxdb_client import InfluxDBClient
class InfluxDBClientTest(unittest.TestCase):
def test_TrailingSlashInUrl(self):
client = InfluxDBClient(url="http://localhost:9999", token="my-token", org="my-org")
self.assertEqual('http://localhost:9999', client.api_client.configuration.host)
client = InfluxDBClient(url="http://localhost:9999/", token="my-token", org="my-org")
self.assertEqual('http://localhost:9999', client.api_client.configuration.host)