diff options
Diffstat (limited to 'test/t/test_arp.py')
-rw-r--r-- | test/t/test_arp.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/t/test_arp.py b/test/t/test_arp.py new file mode 100644 index 00000000..35963d75 --- /dev/null +++ b/test/t/test_arp.py @@ -0,0 +1,14 @@ +import pytest + +from conftest import in_docker + + +class TestArp: + @pytest.mark.xfail(in_docker(), reason="Probably fails in docker") + @pytest.mark.complete("arp ") + def test_1(self, completion): + assert completion + + @pytest.mark.complete("arp -") + def test_2(self, completion): + assert completion |