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