summaryrefslogtreecommitdiff
path: root/test/t/test_ss.py
blob: 716c0fd77f4bbd0588f73f6348804f1d2e71d65e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import pytest


class TestSs:
    @pytest.mark.complete("ss -", require_cmd=True)
    def test_1(self, completion):
        assert completion

    @pytest.mark.complete("ss -A ", require_cmd=True)
    def test_2(self, completion):
        assert completion

    @pytest.mark.complete("ss -A foo,", require_cmd=True)
    def test_3(self, completion):
        assert completion