blob: 74c09a437ce52824b0fd216a5de9263a7bf3af8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import pytest
class TestArpspoof:
@pytest.mark.complete(
"arpspoof -",
require_cmd=True,
# May require privileges even for outputting the usage message
skipif="arpspoof 2>&1 | command grep -qF libnet_open_link",
)
def test_1(self, completion):
assert completion
|