blob: eab9894d9efa5739a6ac326cc6bd0990b73b60f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import pytest
class TestXmlwf:
@pytest.mark.complete("xmlwf ")
def test_1(self, completion):
assert completion
@pytest.mark.complete("xmlwf -", require_cmd=True)
def test_2(self, completion):
assert completion
@pytest.mark.complete("xmlwf -sa ")
def test_no_arg_to_a(self, completion):
assert not completion
|