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