We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3786137 commit cb70f35Copy full SHA for cb70f35
1 file changed
tests/integration/test_connection.py
@@ -24,6 +24,20 @@
24
logger = logging.getLogger(__name__)
25
26
27
+@base.bootstrapped
28
+@pytest.mark.asyncio
29
+async def test_connection_happy_path(event_loop):
30
+ async with base.CleanController() as contr:
31
+ conn = contr.connection()
32
+ new_cont = Controller()
33
+ await new_cont.connect(endpoint=conn.endpoint,
34
+ username=conn.username,
35
+ password=conn.password,
36
+ cacert=conn.cacert,
37
+ )
38
+ await new_cont.disconnect()
39
+
40
41
@base.bootstrapped
42
@pytest.mark.asyncio
43
async def test_monitor(event_loop):
0 commit comments