-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[red-knot] Port 'deferred annotations' unit tests to Markdown (#15686)
## Summary - Port "deferred annotations" unit tests to Markdown - Port `implicit_global_in_function` unit test to Markdown - Removed `resolve_method` and `local_inference` unit tests. These seem like relics from a time where type inference was in it's early stages. There is no way that these tests would fail today without lots of other things going wrong as well. part of #13696 based on #15683 ## Test Plan New MD tests for existing Rust unit tests.
- Loading branch information
Showing
3 changed files
with
55 additions
and
148 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
crates/red_knot_python_semantic/resources/mdtest/annotations/deferred.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Deferred annotations | ||
|
||
## Deferred annotations in stubs always resolve | ||
|
||
```pyi path=mod.pyi | ||
def get_foo() -> Foo: ... | ||
class Foo: ... | ||
``` | ||
|
||
```py | ||
from mod import get_foo | ||
|
||
reveal_type(get_foo()) # revealed: Foo | ||
``` | ||
|
||
## Deferred annotations in regular code fail | ||
|
||
In (regular) source files, annotations are *not* deferred. This also tests that imports from | ||
`__future__` that are not `annotations` are ignored. | ||
|
||
```py | ||
from __future__ import with_statement as annotations | ||
|
||
# error: [unresolved-reference] | ||
def get_foo() -> Foo: ... | ||
|
||
class Foo: ... | ||
|
||
reveal_type(get_foo()) # revealed: Unknown | ||
``` | ||
|
||
## Deferred annotations in regular code with `__future__.annotations` | ||
|
||
If `__future__.annotations` is imported, annotations *are* deferred. | ||
|
||
```py | ||
from __future__ import annotations | ||
|
||
def get_foo() -> Foo: ... | ||
|
||
class Foo: ... | ||
|
||
reveal_type(get_foo()) # revealed: Foo | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters