blob: 3d73e99a663fe850e8ecae97efd2bd412306a395 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import pytest
class TestDu:
@pytest.mark.complete("du ")
def test_1(self, completion):
assert completion
@pytest.mark.complete("du -", require_longopt=True)
def test_options(self, completion):
assert completion
|