blob: c68d046b3d5b9ec7ea13ca38e34e8d4634de5ae9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import pytest
class TestLsusb:
@pytest.mark.complete(
"lsusb -",
xfail="! (lsusb --help 2>&1 || :) | command grep -qF -- --help",
)
def test_1(self, completion):
assert completion
|