blob: 21c52c7c7e3fc85c4e5e9405076d9c29d2345b88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import pytest
class TestXmllint:
@pytest.mark.complete("xmllint ")
def test_1(self, completion):
assert completion
@pytest.mark.complete("xmllint -", require_cmd=True)
def test_2(self, completion):
assert completion
|