mirror of
https://projects.torsion.org/witten/borgmatic.git
synced 2025-01-06 20:01:54 +00:00
9 lines
268 B
Python
9 lines
268 B
Python
import subprocess
|
|
|
|
|
|
def test_bash_completion_runs_without_error():
|
|
subprocess.check_call('borgmatic --bash-completion | bash', shell=True)
|
|
|
|
|
|
def test_fish_completion_runs_without_error():
|
|
subprocess.check_call('borgmatic --fish-completion | fish', shell=True)
|