2022-05-26 18:27:53 +01:00
|
|
|
import subprocess
|
|
|
|
|
|
|
|
|
|
|
|
def test_bash_completion_runs_without_error():
|
2022-05-26 19:18:46 +01:00
|
|
|
subprocess.check_call('borgmatic --bash-completion | bash', shell=True)
|
2023-05-04 21:27:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_fish_completion_runs_without_error():
|
|
|
|
subprocess.check_call('borgmatic --fish-completion | fish', shell=True)
|