diff options
Diffstat (limited to 'test/t/test_iperf.py')
-rw-r--r-- | test/t/test_iperf.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/t/test_iperf.py b/test/t/test_iperf.py index c38e954..0b67001 100644 --- a/test/t/test_iperf.py +++ b/test/t/test_iperf.py @@ -22,3 +22,8 @@ class TestIperf: @pytest.mark.complete("iperf -", require_cmd=True) def test_5(self, completion): assert completion + + @pytest.mark.complete("iperf --format ", require_cmd=True) + def test_format(self, completion): + # 2.0.5 has only up to m/M, later may have g/G, t/T, ... + assert all(x in completion for x in "k m K M".split()) |