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