blob: 88d7b9f1ea0b2388af1052bb8b251c74d0b4a83d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import pytest
@pytest.mark.bashcomp(pre_cmds=("HOME=$PWD/mplayer",))
class TestMplayer:
@pytest.mark.complete("mplayer ")
def test_1(self, completion):
assert completion
@pytest.mark.complete("mplayer -h")
def test_2(self, completion):
assert completion
|