blob: 1f44320820481c036f96af6fd38b52b5a34dd50e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import pytest
class TestPydocstyle:
@pytest.mark.complete("pydocstyle ")
def test_1(self, completion):
assert completion
@pytest.mark.complete(
"pydocstyle -", require_cmd=True, require_longopt=True
)
def test_2(self, completion):
assert completion
|