-
-
Notifications
You must be signed in to change notification settings - Fork 374
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basic type support #239
Merged
Merged
Basic type support #239
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
69a7765
Add support for passing a type to attr.ib() and gathering the type fr…
chadrik d10e1af
Address review notes.
chadrik 143e89f
More review notes.
chadrik 1c2f766
A few more review changes.
chadrik 0168ab8
Quick final fix to the changelog.
chadrik File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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,67 @@ | ||
""" | ||
Tests for python 3 type annotations. | ||
This comment was marked as spam.
Sorry, something went wrong. |
||
""" | ||
|
||
from __future__ import absolute_import, division, print_function | ||
|
||
import pytest | ||
|
||
from attr._make import ( | ||
attr, | ||
attributes, | ||
) | ||
|
||
import typing | ||
|
||
|
||
class TestAnnotations(object): | ||
""" | ||
Tests for types derived from variable annotations (PEP-526). | ||
""" | ||
|
||
def test_basic_annotations(self): | ||
""" | ||
Sets the `Attribute.type` attr from basic type annotations. | ||
""" | ||
@attributes | ||
class C(object): | ||
x: int = attr() | ||
y = attr(type=str) | ||
z = attr() | ||
assert int is C.__attrs_attrs__[0].type | ||
assert str is C.__attrs_attrs__[1].type | ||
assert None is C.__attrs_attrs__[2].type | ||
|
||
def test_catches_basic_type_conflict(self): | ||
""" | ||
Raises ValueError if types conflict. | ||
""" | ||
with pytest.raises(ValueError) as e: | ||
@attributes | ||
class C: | ||
x: int = attr(type=str) | ||
assert ("Type conflict: annotated type and given type differ: " | ||
"<class 'int'> is not <class 'str'>.",) == e.value.args | ||
|
||
def test_typing_annotations(self): | ||
""" | ||
Sets the `Attribute.type` attr from typing annotations. | ||
""" | ||
@attributes | ||
class C(object): | ||
x: typing.List[int] = attr() | ||
y = attr(type=typing.Optional[str]) | ||
|
||
assert typing.List[int] is C.__attrs_attrs__[0].type | ||
assert typing.Optional[str] is C.__attrs_attrs__[1].type | ||
|
||
def test_catches_typing_type_conflict(self): | ||
""" | ||
Raises ValueError if types conflict. | ||
""" | ||
with pytest.raises(ValueError) as e: | ||
@attributes | ||
class C: | ||
x: int = attr(type=typing.List[str]) | ||
assert ("Type conflict: annotated type and given type differ: " | ||
"<class 'int'> is not typing.List[str].",) == e.value.args |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as spam.
Sorry, something went wrong.