Skip to content

Commit 35b4954

Browse files
committed
test: delete old unit tests
1 parent d2acf20 commit 35b4954

File tree

2 files changed

+13
-18
lines changed

2 files changed

+13
-18
lines changed

tuttle_tests/test_controller.py

Lines changed: 0 additions & 18 deletions
This file was deleted.

tuttle_tests/test_model.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,19 @@ def test_user():
8080
assert icloud_account.user.name == "Archibald Tuttle"
8181

8282

83+
class TestUser:
84+
"""Tests for the User model."""
85+
86+
def test_valid_instantiation(self):
87+
user = User.validate(
88+
dict(
89+
name="Harry Tuttle",
90+
subtitle="Heating Engineer",
91+
92+
)
93+
)
94+
95+
8396
class TestContact:
8497
def test_valid_instantiation(self):
8598
contact = Contact.validate(

0 commit comments

Comments
 (0)