blob: 4f7f4c2bd0584bcde35d5f546dbd89e999a3e717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import pytest
class TestVi:
@pytest.mark.complete("vi ")
def test_1(self, completion):
assert completion
@pytest.mark.complete("vi shared/ld.so.conf.d/")
def test_2(self, completion):
assert completion == "foo.txt libfoo.conf".split()
|