blob: 420b6cbbcc58690c7a5c91c8bcb2ce7c1e5dd784 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import pytest
@pytest.mark.bashcomp(pre_cmds=("export RI='-d ri'",))
class TestRi:
@pytest.mark.complete("ri -", require_cmd=True)
def test_1(self, completion):
assert completion
@pytest.mark.complete("ri --dump=ri/")
def test_2(self, completion):
assert completion == "BashCompletion/ cache.ri".split()
@pytest.mark.complete("ri BashCompletio", require_cmd=True)
def test_3(self, completion):
assert completion == "n"
|