def setUp(self): ppl_file = 'tests/tiny-people.csv' tables_file = 'tests/tiny-tables.csv' self.tiny_people = people_objects(ppl_file) self.tiny_tables = table_objects(tables_file) self.days = days_list(tables_file) h_ppl_file = 'tests/tiny-people-with-head.csv' h_tables_file = 'tests/tiny-tables-with-head.csv' self.tiny_people_with_head = people_objects(h_ppl_file) self.tiny_tables_with_head = table_objects(h_tables_file) self.days_with_head = days_list(h_tables_file)
def setUp(self): ppl_file = 'tests/tiny-people-already-seated.csv' tables_file = 'tests/tiny-tables-with-head.csv' self.tiny_people = people_objects(ppl_file) self.tiny_tables = table_objects(tables_file) self.days = days_list(tables_file)