first working tests

This commit is contained in:
John Lancaster
2024-08-12 19:36:13 -05:00
parent d5714808ed
commit ac3a7d7d37
17 changed files with 281 additions and 97 deletions

View File

@@ -7,4 +7,5 @@ class Restaurant(ADAPI):
def initialize(self):
meal = Meal()
eggs: Eggs = meal.dishes[0]
self.log(f'{self.__class__.__name__} initialized with {eggs}')
self.log(f"{self.__class__.__name__} initialized with {eggs}")
self.log(f"Last dish: {meal.dishes[-1]}")