mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 01:38:02 +00:00
Fix State.copy()
This commit is contained in:
parent
03962ab6ae
commit
f8668075d0
@ -381,7 +381,8 @@ class State(object):
|
||||
def copy(self):
|
||||
""" Creates a copy of itself. """
|
||||
return State(self.entity_id, self.state,
|
||||
dict(self.attributes), self.last_changed)
|
||||
dict(self.attributes), self.last_changed,
|
||||
self.last_updated)
|
||||
|
||||
def as_dict(self):
|
||||
""" Converts State to a dict to be used within JSON.
|
||||
|
@ -268,7 +268,15 @@ class TestState(unittest.TestCase):
|
||||
|
||||
def test_copy(self):
|
||||
state = ha.State('domain.hello', 'world', {'some': 'attr'})
|
||||
self.assertEqual(state, state.copy())
|
||||
# Patch dt_util.utcnow() so we know last_updated got copied too
|
||||
with patch('homeassistant.core.dt_util.utcnow',
|
||||
return_value=dt_util.utcnow() + timedelta(seconds=10)):
|
||||
copy = state.copy()
|
||||
self.assertEqual(state.entity_id, copy.entity_id)
|
||||
self.assertEqual(state.state, copy.state)
|
||||
self.assertEqual(state.attributes, copy.attributes)
|
||||
self.assertEqual(state.last_changed, copy.last_changed)
|
||||
self.assertEqual(state.last_updated, copy.last_updated)
|
||||
|
||||
def test_dict_conversion(self):
|
||||
state = ha.State('domain.hello', 'world', {'some': 'attr'})
|
||||
|
Loading…
x
Reference in New Issue
Block a user