hass-core/tests/components/cover
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
..
test_command_line.py Removing calls to mock.assert_called_once_with (#3896) 2016-10-16 16:13:27 -07:00
test_demo.py Use setup_component in tests (#3414) 2016-09-17 10:29:58 -07:00
test_mqtt.py Fix mqtt cover retain and state (#3519) 2016-09-26 00:53:38 +02:00
test_rfxtrx.py Skip RFXtrx tests unless RFXTRX=RUN (#3625) 2016-10-01 13:57:10 -07:00