mirror of
https://github.com/GNS3/gns3-server
synced 2024-12-01 04:38:12 +00:00
Fix tests.
This commit is contained in:
parent
cfe8e9e85c
commit
dde2003168
@ -388,9 +388,10 @@ def test_start_vm(controller, async_run):
|
|||||||
"vmname": "GNS3 VM"
|
"vmname": "GNS3 VM"
|
||||||
}
|
}
|
||||||
with asyncio_patch("gns3server.controller.gns3vm.vmware_gns3_vm.VMwareGNS3VM.start") as mock:
|
with asyncio_patch("gns3server.controller.gns3vm.vmware_gns3_vm.VMwareGNS3VM.start") as mock:
|
||||||
with asyncio_patch("gns3server.controller.compute.Compute.connect") as mock_connect:
|
with asyncio_patch("gns3server.controller.gns3vm.vmware_gns3_vm.VMwareGNS3VM._check_network") as mock_check_network:
|
||||||
async_run(controller.start())
|
with asyncio_patch("gns3server.controller.compute.Compute.connect") as mock_connect:
|
||||||
assert mock.called
|
async_run(controller.start())
|
||||||
|
assert mock.called
|
||||||
assert "local" in controller.computes
|
assert "local" in controller.computes
|
||||||
assert "vm" in controller.computes
|
assert "vm" in controller.computes
|
||||||
assert len(controller.computes) == 2 # Local compute and vm are created
|
assert len(controller.computes) == 2 # Local compute and vm are created
|
||||||
|
Loading…
Reference in New Issue
Block a user