Custom tests (#529)

* Add tests for custom components

* Add more tests
This commit is contained in:
Anders Persson 2019-05-08 10:56:52 +02:00 committed by Otto Winter
parent 667457989e
commit a07a835eb0

View file

@ -122,6 +122,13 @@ sensor:
name: Color Temperature name: Color Temperature
integration_time: 700ms integration_time: 700ms
gain: 60x gain: 60x
- platform: custom
lambda: |-
auto s = new sensor::Sensor();
return {s};
sensors:
- id: custom_sensor
name: Custom Sensor
time: time:
- platform: homeassistant - platform: homeassistant
@ -178,6 +185,13 @@ binary_sensor:
- platform: ttp229_lsf - platform: ttp229_lsf
channel: 1 channel: 1
name: TTP229 LSF Test name: TTP229 LSF Test
- platform: custom
lambda: |-
auto s = new binary_sensor::BinarySensor();
return {s};
sensors:
- id: custom_binary_sensor
name: Custom Binary Sensor
remote_receiver: remote_receiver:
pin: GPIO12 pin: GPIO12
@ -233,6 +247,13 @@ switch:
id: gpio_switch2 id: gpio_switch2
pin: GPIO1 pin: GPIO1
interlock: *interlock interlock: *interlock
- platform: custom
lambda: |-
auto s = new switch::Switch();
return {s};
sensors:
- id: custom_switch
name: Custom Switch
stepper: stepper:
- platform: uln2003 - platform: uln2003