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