blob: ee498c3288bc817d96f0884ceccdc18d8433165a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import pytest
@pytest.mark.bashcomp(cmd="pylint-3")
class TestPylint3:
@pytest.mark.complete("pylint-3 --v", require_cmd=True)
def test_1(self, completion):
assert completion
@pytest.mark.complete("pylint-3 http.clien")
def test_2(self, completion):
assert completion
|