From be0f86165a12b5bbe562d5a4f2dd772b6f72ce29 Mon Sep 17 00:00:00 2001 From: bandophahita Date: Mon, 19 Feb 2024 16:30:58 -0600 Subject: [PATCH] adding namespace test --- tests/test_namespace.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/test_namespace.py diff --git a/tests/test_namespace.py b/tests/test_namespace.py new file mode 100644 index 0000000..083cebd --- /dev/null +++ b/tests/test_namespace.py @@ -0,0 +1,8 @@ +import screenpy_adapter_allure + + +def test_screenpy_adapter_allure() -> None: + expected = [ + "AllureAdapter", + ] + assert sorted(screenpy_adapter_allure.__all__) == sorted(expected)