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