コード例 #1
0
ファイル: test_person.py プロジェクト: obihann/lifes-worth
def test_newIdea():
    person = Person("Jeff")
    title = "Dress yourself"

    person.newIdea(title, "Find some clothes", 4)

    idea = person.findIdea(title)

    assert idea.title == title
コード例 #2
0
ファイル: worth.py プロジェクト: obihann/lifes-worth
def main():
    jeff = Person.load("Jeff")

    print(jeff)