hass-core/test/helper.py
2014-11-23 22:18:40 -08:00

15 lines
229 B
Python

"""
test.helper
~~~~~~~~~~~
Helper method for writing tests.
"""
def mock_service(hass, domain, service):
calls = []
hass.services.register(
domain, service, lambda call: calls.append(call))
return calls