From 7f138a3b54cf00467ff05243b5dddd36b4cf9118 Mon Sep 17 00:00:00 2001 From: Mattias Welponer Date: Tue, 19 Jun 2018 23:36:58 +0200 Subject: [PATCH] Remove config_flow tests --- .../homematicip_cloud/test_config_flow.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/tests/components/homematicip_cloud/test_config_flow.py b/tests/components/homematicip_cloud/test_config_flow.py index 1e170eff179..2b2836409f7 100644 --- a/tests/components/homematicip_cloud/test_config_flow.py +++ b/tests/components/homematicip_cloud/test_config_flow.py @@ -1,17 +1,2 @@ """Tests for HomematicIP Cloud config flow.""" -import asyncio -from unittest.mock import Mock, patch -import aiohue -import pytest -import voluptuous as vol - -from homeassistant.components.homematicip_cloud import config_flow, const - -from tests.common import MockConfigEntry, mock_coro - -async def test_flow_works(hass, aioclient_mock): - """Test config flow .""" - flow = config_flow.HomematicipCloudFlowHandler() - flow.hass = hass - await flow.async_step_init()