mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00:00
Add multiple option to text selector (#104635)
Co-authored-by: Robert Resch <robert@resch.dev>
This commit is contained in:
@@ -602,6 +602,11 @@ def test_object_selector_schema(schema, valid_selections, invalid_selections) ->
|
||||
({"multiline": True}, (), ()),
|
||||
({"multiline": False, "type": "email"}, (), ()),
|
||||
({"prefix": "before", "suffix": "after"}, (), ()),
|
||||
(
|
||||
{"multiple": True},
|
||||
(["abc123", "def456"],),
|
||||
("abc123", None, ["abc123", None]),
|
||||
),
|
||||
),
|
||||
)
|
||||
def test_text_selector_schema(schema, valid_selections, invalid_selections) -> None:
|
||||
|
||||
Reference in New Issue
Block a user