blob: 9347adfbb52c5efcb5c17b225c730a1c10ecfcb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import pytest
class TestReportbug:
@pytest.mark.complete("reportbug --m", require_cmd=True)
def test_1(self, completion):
assert completion
@pytest.mark.complete("reportbug --bts=", require_cmd=True)
def test_bts(self, completion):
assert "default" in completion
|