fix logs_monitor_start_error()
Signed-off-by: Soumik Dutta <shalearkane@gmail.com>
This commit is contained in:
parent
e211863cba
commit
f442aeae9c
1 changed files with 3 additions and 5 deletions
|
@ -40,11 +40,9 @@ def test_run_configuration_logs_monitor_start_error():
|
|||
flexmock(module.borg_version).should_receive('local_borg_version').and_return(flexmock())
|
||||
flexmock(module.dispatch).should_receive('call_hooks').and_raise(OSError).and_return(
|
||||
None
|
||||
).and_return(None)
|
||||
expected_results = [flexmock(), flexmock()]
|
||||
flexmock(module).should_receive('log_error_records').and_return(
|
||||
[expected_results[0]]
|
||||
).and_return([expected_results[1]])
|
||||
).and_return(None).and_return(None)
|
||||
expected_results = [flexmock()]
|
||||
flexmock(module).should_receive('log_error_records').and_return(expected_results)
|
||||
flexmock(module).should_receive('run_actions').never()
|
||||
config = {'location': {'repositories': ['foo']}}
|
||||
arguments = {'global': flexmock(monitoring_verbosity=1, dry_run=False), 'create': flexmock()}
|
||||
|
|
Loading…
Reference in a new issue