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