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