core/tests/components/rollershutter
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 Fix PEP257 issues 2016-03-09 10:25:50 +01:00
test_command_line.py Removing calls to mock.assert_called_once_with (#3896) 2016-10-16 16:13:27 -07:00
test_demo.py Migrate core from threads to async awesomeness (#3248) 2016-09-12 19:16:14 -07:00
test_mqtt.py Migrate core from threads to async awesomeness (#3248) 2016-09-12 19:16:14 -07:00
test_rfxtrx.py Skip RFXtrx tests unless RFXTRX=RUN (#3625) 2016-10-01 13:57:10 -07:00