Пример #1
0
 def test_edit_comment_not_found(self):
     task = Task("Tst", "27.04.2020")
     task.add_comment("pay the bills")
     message = task.edit_comment(1, "finish my homework")
     expected = "Cannot find comment."
     self.assertEqual(message, expected)
Пример #2
0
from section import Section
from task import Task

task = Task("Make bed", "27/05/2020")
print(task.change_name("Go to University"))
print(task.change_due_date("28.05.2020"))
task.add_comment("Don't forget laptop")
print(task.edit_comment(0, "Don't forget laptop and notebook"))
print(task.details())
section = Section("Daily tasks")
print(section.add_task(task))
second_task = Task("Make bed", "27/05/2020")
section.add_task(second_task)
print(section.clean_section())
print(section.view_section())
Пример #3
0
 def test_edit_comment_working(self):
     task = Task("Tst", "27.04.2020")
     task.add_comment("pay the bills")
     message = task.edit_comment(0, "finish my homework")
     expected = "finish my homework"
     self.assertEqual(message, expected)