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