-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
from homeassistant.components.media_player import MediaPlayerEntityFeature | ||
from homeassistant.const import REQUIRED_PYTHON_VER | ||
|
||
from custom_components.webrtc import * | ||
from custom_components.webrtc.config_flow import * | ||
from custom_components.webrtc.media_player import * | ||
|
||
def test_2022_5_0(): | ||
assert MediaPlayerEntityFeature | ||
|
||
def test_backward(): | ||
# https://github.com/home-assistant/core/blob/2023.2.0/homeassistant/const.py | ||
assert REQUIRED_PYTHON_VER >= (3, 10, 0) | ||
|
||
# def test_2023_7_0(): | ||
# assert ImageEntity | ||
assert async_setup_entry, async_unload_entry | ||
assert FlowHandler | ||
assert WebRTCPlayer |