Rename embedded model tests
This commit is contained in:
parent
87b96ffb20
commit
06c082e230
1 changed files with 2 additions and 4 deletions
|
@ -114,8 +114,7 @@ def test_saves_model():
|
||||||
assert address2 == address
|
assert address2 == address
|
||||||
|
|
||||||
|
|
||||||
# Saves a model with embedded models
|
def test_saves_with_embedded_models():
|
||||||
def test_saves_with_relationships():
|
|
||||||
member = Member(
|
member = Member(
|
||||||
first_name="Andrew",
|
first_name="Andrew",
|
||||||
last_name="Brookins",
|
last_name="Brookins",
|
||||||
|
@ -129,8 +128,7 @@ def test_saves_with_relationships():
|
||||||
assert member2.address == address
|
assert member2.address == address
|
||||||
|
|
||||||
|
|
||||||
# Saves a model with deeply embedded models
|
def test_saves_with_deeply_embedded_models():
|
||||||
def test_saves_with_relationships():
|
|
||||||
hat = Item(
|
hat = Item(
|
||||||
name="Cool hat",
|
name="Cool hat",
|
||||||
price=2.99
|
price=2.99
|
||||||
|
|
Loading…
Reference in a new issue