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