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