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