1
0
forked from VimPlug/jedi

added test to override fixture return value with annotation

This commit is contained in:
boerde
2021-08-29 00:38:34 +02:00
parent fe50352f9c
commit 8808b5b64b

View File

@@ -64,6 +64,11 @@ def lala(my_fixture):
def lala(my_fixture):
pass
# overriding types of a fixture should be possible
def test_x(my_yield_fixture: str):
#? str()
my_yield_fixture
# -----------------
# completion
# -----------------