blob: 2e6c6f1d23e4a81b54c2cd9b3fa1a0612e8dac8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import pytest
class TestVgcfgbackup:
@pytest.mark.complete(
"vgcfgbackup -",
require_cmd=True,
xfail="! vgcfgbackup --help &>/dev/null",
)
def test_1(self, completion):
assert completion
|