| 12345678910111213 | from borgmatic.commands import generate_config as moduledef test_parse_arguments_with_no_arguments_uses_defaults():    parser = module.parse_arguments()    assert parser.destination_filename == module.DEFAULT_DESTINATION_CONFIG_FILENAMEdef test_parse_arguments_with_filename_argument_overrides_defaults():    parser = module.parse_arguments('--destination', 'config.yaml')    assert parser.destination_filename == 'config.yaml'
 |