summaryrefslogtreecommitdiff
path: root/test/t/test_userdel.py
blob: 3405e127c450aeda4ddb89111ba6c47ea371dc88 (plain)
1
2
3
4
5
6
7
8
9
10
11
import pytest


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

    @pytest.mark.complete("userdel roo")
    def test_2(self, completion):
        assert completion == "t" or "root" in completion