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