blob: 7a0f4478780f590f6f921d4af47c5977b781a9ab (
plain)
1
2
3
4
5
6
7
8
|
import pytest
@pytest.mark.bashcomp(pre_cmds=("PATH=/usr/lib/mailman/bin:$PATH",))
class TestArch:
@pytest.mark.complete("arch -", require_cmd=True)
def test_1(self, completion):
assert completion
|