blob: 1b9e37dfdd84860018078775edfd2f1064bc3425 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import pytest
from conftest import assert_bash_exec
class TestCpio:
@pytest.mark.complete("cpio --")
def test_1(self, completion):
assert completion
@pytest.mark.complete("cpio -R ")
def test_2(self, bash, completion):
users = sorted(
assert_bash_exec(bash, "compgen -A user", want_output=True)
.strip()
.splitlines()
)
assert list(completion) == users
|