From d4fc2e9ae520643c509456b93c48d598d37d464d Mon Sep 17 00:00:00 2001 From: DanielePalaia Date: Thu, 5 Dec 2024 10:08:27 +0100 Subject: [PATCH] adding basic test --- tests/__init__.py | 0 tests/test_connection.py | 5 +++++ 2 files changed, 5 insertions(+) create mode 100644 tests/__init__.py create mode 100644 tests/test_connection.py diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_connection.py b/tests/test_connection.py new file mode 100644 index 0000000..b1716ca --- /dev/null +++ b/tests/test_connection.py @@ -0,0 +1,5 @@ +from proton.utils import BlockingConnection + + +def test_connection() -> None: + BlockingConnection("amqp://guest:guest@localhost:5672/")