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