summaryrefslogtreecommitdiff
path: root/test/t/test_userdel.py
blob: 718c66298ed23765d00e8a96895e275a63de382a (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 root")
    def test_2(self, completion):
        assert "root" in completion