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