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