import pytest @pytest.mark.bashcomp(cmd="chromium-browser") class TestChromiumBrowser: @pytest.mark.complete("chromium-browser ") def test_1(self, completion): assert completion @pytest.mark.complete("chromium-browser -") def test_2(self, completion): assert completion assert not completion.endswith(" ")