summaryrefslogtreecommitdiffstats
path: root/nova/tests/conductor/test_conductor.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/tests/conductor/test_conductor.py')
-rw-r--r--nova/tests/conductor/test_conductor.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/nova/tests/conductor/test_conductor.py b/nova/tests/conductor/test_conductor.py
index cc3dbfcc0..5fc4caaea 100644
--- a/nova/tests/conductor/test_conductor.py
+++ b/nova/tests/conductor/test_conductor.py
@@ -130,6 +130,16 @@ class _BaseTestCase(object):
'fake-window',
'fake-host')
+ def test_migration_get_in_progress_by_host_and_node(self):
+ self.mox.StubOutWithMock(db,
+ 'migration_get_in_progress_by_host_and_node')
+ db.migration_get_in_progress_by_host_and_node(
+ self.context, 'fake-host', 'fake-node').AndReturn('fake-result')
+ self.mox.ReplayAll()
+ result = self.conductor.migration_get_in_progress_by_host_and_node(
+ self.context, 'fake-host', 'fake-node')
+ self.assertEqual(result, 'fake-result')
+
def test_migration_create(self):
inst = {'uuid': 'fake-uuid',
'host': 'fake-host',