blob: fe1c7f695f0844bc84ffe12f3eaf9a99d62be5aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import pytest
class TestChsh:
@pytest.mark.complete("chsh ")
def test_1(self, completion):
assert completion
@pytest.mark.complete("chsh -s ")
def test_2(self, completion):
assert completion
@pytest.mark.complete("chsh -", require_cmd=True)
def test_3(self, completion):
assert completion
|