blob: e18698969b05717d8415851a82ee8f7f37ad798b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import pytest
class TestVdir:
@pytest.mark.complete("vdir ")
def test_1(self, completion):
assert completion
@pytest.mark.complete("vdir -", require_cmd=True)
def test_options(self, completion):
assert completion
|