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