blob: 7f7201bd5ad4c3bcc13d726c98bb3ca1bea34e24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import pytest
class TestLdd:
@pytest.mark.complete("ldd ")
def test_1(self, completion):
assert completion
@pytest.mark.complete(
"ldd -", require_cmd=True, xfail="! ldd --help &>/dev/null"
)
def test_options(self, completion):
assert completion
|