2022-05-26 10:27:53 -07:00
|
|
|
import subprocess
|
|
|
|
|
|
|
|
|
|
|
|
def test_bash_completion_runs_without_error():
|
2022-05-26 11:18:46 -07:00
|
|
|
subprocess.check_call('borgmatic --bash-completion | bash', shell=True)
|
2023-05-04 13:27:00 -07:00
|
|
|
|
|
|
|
|
|
|
|
def test_fish_completion_runs_without_error():
|
|
|
|
subprocess.check_call('borgmatic --fish-completion | fish', shell=True)
|