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