blob: 54c243213c29ca9ad0c432664bbcf03ed261b9ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import pytest
class TestLua:
@pytest.mark.complete("lua ")
def test_1(self, completion):
assert completion
@pytest.mark.complete("lua -", require_cmd=True)
def test_2(self, completion):
assert completion
|