~ubuntu-branches/ubuntu/vivid/ironic/vivid-updates

« back to all changes in this revision

Viewing changes to ironic/tests/drivers/test_ssh.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2015-04-17 09:28:31 UTC
  • mfrom: (1.2.7)
  • Revision ID: package-import@ubuntu.com-20150417092831-wu2awfbqomnzpeim
Tags: 2015.1~rc1-0ubuntu1
* New upstream milestone release:
  - d/control: Align with upstream dependencies
  - d/p/fix-requirements.patch: Dropped no longer needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
283
283
                          info)
284
284
 
285
285
        get_hosts_name_mock.assert_called_once_with(self.sshclient, info)
286
 
        exec_ssh_mock.assert_not_called()
 
286
        self.assertFalse(exec_ssh_mock.called)
287
287
 
288
288
    @mock.patch.object(processutils, 'ssh_execute')
289
289
    def test__get_power_status_exception(self, exec_ssh_mock):