1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Skip automatic events older than latest data (#9230)

* Skip automatic events older than latest data

* Update test
This commit is contained in:
Adam Mills
2017-08-31 10:29:18 -04:00
committed by Pascal Vizeli
parent 60342b4738
commit 7d281fd224
2 changed files with 25 additions and 8 deletions

View File

@@ -1,5 +1,6 @@
"""Test the automatic device tracker platform."""
import asyncio
from datetime import datetime
import logging
from unittest.mock import patch, MagicMock
import aioautomatic
@@ -71,10 +72,12 @@ def test_valid_credentials(
vehicle.display_name = 'mock_display_name'
vehicle.fuel_level_percent = 45.6
vehicle.latest_location = None
vehicle.updated_at = datetime(2017, 8, 13, 1, 2, 3)
trip.end_location.lat = 45.567
trip.end_location.lon = 34.345
trip.end_location.accuracy_m = 5.6
trip.ended_at = datetime(2017, 8, 13, 1, 2, 4)
@asyncio.coroutine
def get_session(*args, **kwargs):