From ba3ef8c6febc0b4dfe690b1a4bfac7d626a3fc34 Mon Sep 17 00:00:00 2001 From: Evgeniy Blinov Date: Tue, 23 Jul 2024 18:30:12 +0300 Subject: [PATCH] +1 test --- tests/test_proxy_module.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/test_proxy_module.py b/tests/test_proxy_module.py index aee0d9f..1bedbbb 100644 --- a/tests/test_proxy_module.py +++ b/tests/test_proxy_module.py @@ -335,3 +335,9 @@ def test_use_path_object_as_first_positional_argument(): def test_suby_as_attribute_of_suby(): assert suby.suby is suby + + +def test_full_import_form(): + from suby import suby as local_suby + + assert suby is local_suby