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