summaryrefslogtreecommitdiff
path: root/test/t/test_ri.py
blob: e54f18bb961004c7dfe7ea754f9371ba687a012e (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 -")
    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")
    def test_3(self, completion):
        assert completion == "BashCompletion"