mirror of
https://projects.torsion.org/witten/borgmatic.git
synced 2025-01-08 00:55:42 +00:00
9 lines
214 B
Python
9 lines
214 B
Python
from flexmock import flexmock
|
|
|
|
from borgmatic.commands import generate_config as module
|
|
|
|
|
|
def test_main_does_not_raise():
|
|
flexmock(module.borgmatic.commands.borgmatic).should_receive('main')
|
|
|
|
module.main()
|