blob: 320647f4bcaaf324da6657c8868302317305313c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import pytest
class TestIp:
@pytest.mark.complete("ip ")
def test_1(self, completion):
assert completion
@pytest.mark.complete("ip a ")
def test_2(self, completion):
assert completion
@pytest.mark.complete("ip route replace ")
def test_r_r(self, completion):
assert completion
|