blob: 51ba2012e789ea50438f3a66776e2d78a718e803 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import pytest
class TestPerlcritic:
@pytest.mark.complete("perlcritic ")
def test_1(self, completion):
assert completion
@pytest.mark.complete("perlcritic --", require_cmd=True)
def test_2(self, completion):
assert completion
@pytest.mark.complete("perlcritic --theme ", require_cmd=True)
def test_3(self, completion):
assert completion
|