Update test_proxmox_backup_schedule.py

This commit is contained in:
raoufnezhad 2025-03-17 13:30:38 +03:30 committed by GitHub
commit 8c3ff95648
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -132,7 +132,7 @@ RESOURCE_LIST = [
]
BACKUP_JOBS = [
{
{
"type": "vzdump",
"id": "backup-001",
"storage": "local",
@ -200,6 +200,7 @@ class TestProxmoxBackupScheduleModule(ModuleTestCase):
assert result["msg"] == "missing required arguments: api_host, api_user, state"
def test_update_vmid_in_backup(self):
with patch('builtins.input', return_value='mocked input'):
with pytest.raises(AnsibleExitJson) as exc_info:
set_module_args({
'api_host': 'proxmoxhost',
@ -215,6 +216,7 @@ class TestProxmoxBackupScheduleModule(ModuleTestCase):
assert result['changed'] is True
def test_delete_vmid_from_backup(self):
with patch('builtins.input', return_value='mocked input'):
with pytest.raises(AnsibleExitJson) as exc_info:
set_module_args({
'api_host': 'proxmoxhost',