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