コード例 #1
0
 def test_populate_qcow2_image(self, mock_cg, mock_qinfo, mock_dd):
     type(mock_qinfo.return_value).file_format = mock.PropertyMock(
         return_value='qcow2')
     utils.populate_image('src', 'dst')
     mock_cg.assert_called_once_with('src', 'dst', 'raw', True)
     self.assertFalse(mock_dd.called)
コード例 #2
0
 def test_populate_qcow2_image(self, mock_cg, mock_qinfo, mock_dd):
     type(mock_qinfo.return_value).file_format = mock.PropertyMock(
         return_value='qcow2')
     utils.populate_image('src', 'dst')
     mock_cg.assert_called_once_with('src', 'dst', 'raw', True)
     self.assertFalse(mock_dd.called)