(self, r)
| 651 | |
| 652 | @pytest.mark.onlynoncluster |
| 653 | def test_client_list(self, r): |
| 654 | clients = r.client_list() |
| 655 | assert isinstance(clients[0], dict) |
| 656 | assert "addr" in clients[0] |
| 657 | |
| 658 | @pytest.mark.onlynoncluster |
| 659 | @skip_if_server_version_lt("6.2.0") |
nothing calls this directly
no test coverage detected