summaryrefslogtreecommitdiff
path: root/test/t/test_firefox.py
blob: cbba2c6c0f83ae24933c8020c7be679f735c88b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import pytest


class TestFirefox:
    @pytest.mark.complete("firefox ")
    def test_1(self, completion):
        assert completion

    @pytest.mark.complete("firefox -")
    def test_2(self, completion):
        assert completion
        assert not completion.endswith(" ")