Ejemplo n.º 1
0
def test_modified_yesterday():
    yesterday = timezone.now() - timedelta(days=1)
    obj = NoteFactory()
    obj.created = yesterday
    obj.save()
    assert obj.modified_today() is False
Ejemplo n.º 2
0
def test_modified_tomorrow():
    tomorrow = timezone.now() + timedelta(days=1)
    obj = NoteFactory()
    obj.created = tomorrow
    obj.save()
    assert obj.modified_today() is False