blob: 7ff56b41235a28a33e31ec2785cb8ac9033c5a5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import pytest
class TestComplete:
@pytest.mark.complete("complete -")
def test_1(self, completion):
assert completion
@pytest.mark.complete(r"\complete -")
def test_2(self, completion):
assert completion
|