-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test named slot, add skeletons for basemodel methods
- Loading branch information
1 parent
016b81a
commit 198ed3b
Showing
5 changed files
with
84 additions
and
4 deletions.
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,45 @@ | ||
""" | ||
Base includes | ||
""" | ||
|
||
import pytest | ||
|
||
|
||
@pytest.mark.skip | ||
def test_basemodel_getitem(imported_schema): | ||
""" | ||
We can get a value from ``value`` if we have it | ||
""" | ||
pass | ||
|
||
|
||
@pytest.mark.skip | ||
def test_basemodel_coerce_value(imported_schema): | ||
""" | ||
We can instantiate something by trying to grab it's "value" item | ||
""" | ||
pass | ||
|
||
|
||
@pytest.mark.skip | ||
def test_basemodel_cast_with_value(imported_schema): | ||
""" | ||
Opposite of above, we try to cast **into** the ``value`` field | ||
""" | ||
pass | ||
|
||
|
||
@pytest.mark.skip | ||
def test_basemodel_coerce_subclass(imported_schema): | ||
""" | ||
We try to rescue by coercing to a child class if possible | ||
""" | ||
pass | ||
|
||
|
||
@pytest.mark.skip | ||
def test_basemodel_extra_to_value(imported_schema): | ||
""" | ||
We gather extra fields and put them into a value dict when it's present | ||
""" | ||
pass |