Browse Source

Avoid requiring network in test_healthchecks.py (#869).

Reviewed-on: https://projects.torsion.org/borgmatic-collective/borgmatic/pulls/869
Dan Helfman 1 year ago
parent
commit
2037810c6b
1 changed files with 3 additions and 0 deletions
  1. 3 0
      tests/unit/hooks/test_healthchecks.py

+ 3 - 0
tests/unit/hooks/test_healthchecks.py

@@ -318,6 +318,9 @@ def test_ping_monitor_does_not_add_create_query_parameter_when_ping_url_is_uuid(
 
 def test_ping_monitor_issues_warning_when_ping_url_is_uuid_and_create_slug_true():
     hook_config = {'ping_url': 'b3611b24-df9c-4d36-9203-fa292820bf2a', 'create_slug': True}
+
+    flexmock(module.requests).should_receive('post').and_return(flexmock(ok=True))
+
     flexmock(module.logger).should_receive('warning').once()
 
     module.ping_monitor(