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