blob: 6f9192d25170f0cde6551263b4a171facc3b0912 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import pytest
class TestGetconf:
@pytest.mark.complete("getconf P")
def test_1(self, completion):
assert completion
@pytest.mark.complete("getconf -")
def test_2(self, completion):
assert completion
@pytest.mark.complete("getconf -a ")
def test_3(self, completion):
assert completion
@pytest.mark.complete("getconf -v ")
def test_4(self, completion):
assert completion
@pytest.mark.complete("getconf PATH_MAX ")
def test_5(self, completion):
assert completion
|