Exemple #1
0
def test_start():
    title = "Life's Worth"
    description = "Track your worth by the ideas you complete"
    difficulity = 10

    idea = Idea(title, description, difficulity)
    idea.started = True

    assert type(idea.started) == type(time.time())