hass-core/tests/components/climate
Rob Capellini 4891ca1610 Removing calls to mock.assert_called_once_with (#3896)
If a mock's assert_called_once_with method is misspelled (e.g. asert_called_once_with) then the test will appear as passing.  Therefore, this commit removes all instances of assert_called_once_with calls and replaces them with two assertions:

        self.assertEqual(mock.call_count, 1)
        self.assertEqual(mock.call_args, mock.call(call_args))
2016-10-16 16:13:27 -07:00
..
__init__.py Migrate Thermostat and HVAC component to climate component (#2825) 2016-08-19 00:17:28 -07:00
test_demo.py Bugfix temp convert on none temp attribute / unittest for that (#3654) 2016-10-03 10:46:31 +02:00
test_generic_thermostat.py Continue on invalid platforms and new setup_component unit tests (#3736) 2016-10-08 11:27:35 -07:00
test_honeywell.py Removing calls to mock.assert_called_once_with (#3896) 2016-10-16 16:13:27 -07:00