blob: 57ef26c007eb91b293708654787450aeb25705c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import pytest
class TestNetstat:
@pytest.mark.complete("netstat ")
def test_1(self, completion):
assert completion
@pytest.mark.complete("netstat -", require_longopt=True)
def test_options(self, completion):
assert completion
|