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