示例#1
0
 def test_broken_content(self):
     app = Application()
     app.get_data_from_file('./data/broken_tasks.json',
                            './data/broken_users.json')
     app.generate_reports(no_file=True)
示例#2
0
 def test_user1_has_no_tasks(self):
     app = Application()
     app.get_data_from_file('./data/user1_has_no_tasks.json',
                            './data/default_users.json')
     app.generate_reports(no_file=True)
示例#3
0
 def test_empty_content(self):
     app = Application()
     app.get_data_from_file('./data/empty_tasks.json',
                            './data/default_users.json')
     app.generate_reports(no_file=True)