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