diff --git a/tests/tesla_mock.py b/tests/tesla_mock.py index 9733650..ca11b37 100644 --- a/tests/tesla_mock.py +++ b/tests/tesla_mock.py @@ -492,6 +492,9 @@ def command_ok(): "right_temp_direction": -309, "seat_heater_left": 0, "seat_heater_right": 0, + "seat_heater_rear_center": 0, + "seat_heater_rear_left": 0, + "seat_heater_rear_right": 0, "side_mirror_heaters": False, "steering_wheel_heat_level": 1, "steering_wheel_heater": True, diff --git a/tests/unit_tests/test_car.py b/tests/unit_tests/test_car.py index 94347b0..bb3663b 100644 --- a/tests/unit_tests/test_car.py +++ b/tests/unit_tests/test_car.py @@ -442,6 +442,18 @@ async def test_remote_seat_heater_request(monkeypatch): assert await _car.remote_seat_heater_request(3, 1) is None +@pytest.mark.asyncio +async def test_remote_seat_cooler_request(monkeypatch): + """Test remote seat cooler request.""" + TeslaMock(monkeypatch) + _controller = Controller(None) + await _controller.connect() + await _controller.generate_car_objects() + _car = _controller.cars[VIN] + + assert await _car.remote_seat_cooler_request(1, 2) is None + + @pytest.mark.asyncio async def test_schedule_software_update(monkeypatch): """Test scheduling software update."""