blob: 609c7e55cd632c0097c10a4748b1c9cd8b472703 (
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_cmd=True)
def test_options(self, completion):
assert completion
|