From e3733d3a01cc428e383c4e7afd3197dc4a48075e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Hild=C3=A9n?= Date: Sat, 11 Jan 2025 10:23:18 +0200 Subject: [PATCH] Expand func args test (#140) --- tests/extension/ref/ref_func_args.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/extension/ref/ref_func_args.txt b/tests/extension/ref/ref_func_args.txt index c830310..49a6ce9 100644 --- a/tests/extension/ref/ref_func_args.txt +++ b/tests/extension/ref/ref_func_args.txt @@ -3,6 +3,10 @@ Foo arg Foo Foo +test_project +arg +test_project.Foo +test_project.Foo # split # split Test project @@ -15,4 +19,9 @@ Test project def f(arg: Foo = Foo()): pass + import test_project + + def f(arg: test_project.Foo = test_project.Foo()): + pass + .. automodule:: test_project