1
0
mirror of https://github.com/home-assistant/core.git synced 2025-08-25 21:30:05 +00:00
Files
core/tests/components/onboarding/__init__.py
Paulus Schoutsen 4de97abc3a Black
2019-07-31 12:25:30 -07:00

12 lines
290 B
Python

"""Tests for the onboarding component."""
from homeassistant.components import onboarding
def mock_storage(hass_storage, data):
"""Mock the onboarding storage."""
hass_storage[onboarding.STORAGE_KEY] = {
"version": onboarding.STORAGE_VERSION,
"data": data,
}