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