(self, url, expected_fields)
| 1134 | }) |
| 1135 | ]) |
| 1136 | def test_amqp_get_broker_info(self, url, expected_fields): |
| 1137 | info = self.app.connection(url).info() |
| 1138 | for key, expected_value in expected_fields.items(): |
| 1139 | assert info[key] == expected_value |
| 1140 | |
| 1141 | def test_amqp_failover_strategy_selection(self): |
| 1142 | # Test passing in a string and make sure the string |
nothing calls this directly
no test coverage detected