コード例 #1
0
 def tearDown(self) -> None:
     for equipment_type in self.equipment_types_created:
         delete_equipment_type_with_equipments(
             client=self.client, equipment_type=equipment_type)
     for location_type in self.location_types_created:
         delete_location_type_with_locations(client=self.client,
                                             location_type=location_type)
コード例 #2
0
 def tearDown(self) -> None:
     for equipment_type in self.equipment_types_created:
         delete_equipment_type_with_equipments(self.client, equipment_type)
     for location_type in self.location_types_created:
         delete_location_type_with_locations(self.client, location_type)
     for service_type in self.service_types_created:
         delete_service_type_with_services(self.client, service_type)
     customers = get_all_customers(self.client)
     for customer in customers:
         delete_customer(self.client, customer)