@@ -20,14 +20,19 @@ use rabbitmq_http_client::{blocking_api::Client, requests::VirtualHostParams};
2020
2121mod test_helpers;
2222use crate :: test_helpers:: {
23- amqp_endpoint_with_vhost, await_metric_emission, endpoint, PASSWORD , USERNAME ,
23+ amqp_endpoint_with_vhost, await_metric_emission, endpoint, testing_against_3_13_x, PASSWORD ,
24+ USERNAME ,
2425} ;
2526
2627#[ test]
2728fn test_blocking_declare_a_dynamic_amqp091_shovel ( ) {
2829 let endpoint = endpoint ( ) ;
2930 let rc = Client :: new ( & endpoint, USERNAME , PASSWORD ) ;
3031
32+ if testing_against_3_13_x ( ) {
33+ return ;
34+ }
35+
3136 let vh = "rust.http.api.blocking.test_declare_a_dynamic_amqp091_shovel" ;
3237 let sh = "test_declare_a_dynamic_amqp091_shovel" ;
3338
@@ -62,6 +67,10 @@ fn test_blocking_declare_a_dynamic_amqp10_shovel() {
6267 let endpoint = endpoint ( ) ;
6368 let rc = Client :: new ( & endpoint, USERNAME , PASSWORD ) ;
6469
70+ if testing_against_3_13_x ( ) {
71+ return ;
72+ }
73+
6574 let vh = "rust.http.api.blocking.test_blocking_declare_a_dynamic_amqp10_shovel" ;
6675 let sh = "test_async_declare_a_dynamic_amqp10_shovel" ;
6776
@@ -104,6 +113,10 @@ fn test_blocking_declare_a_dynamic_amqp091_shovel_with_predeclared_source_topolo
104113 let endpoint = endpoint ( ) ;
105114 let rc = Client :: new ( & endpoint, USERNAME , PASSWORD ) ;
106115
116+ if testing_against_3_13_x ( ) {
117+ return ;
118+ }
119+
107120 let vh = "rust.http.api.blocking.test_declare_a_dynamic_amqp091_shovel_with_predeclared_source_topology" ;
108121 let sh = "test_declare_a_dynamic_amqp091_shovel_with_predeclared_source_topology" ;
109122
@@ -142,6 +155,10 @@ fn test_blocking_declare_a_dynamic_amqp091_shovel_with_predeclared_destination_t
142155 let endpoint = endpoint ( ) ;
143156 let rc = Client :: new ( & endpoint, USERNAME , PASSWORD ) ;
144157
158+ if testing_against_3_13_x ( ) {
159+ return ;
160+ }
161+
145162 let vh = "rust.http.api.blocking.test_declare_a_dynamic_amqp091_shovel_with_predeclared_destination_topology" ;
146163 let sh = "test_declare_a_dynamic_amqp091_shovel_with_predeclared_destination_topology" ;
147164
@@ -183,6 +200,10 @@ fn test_blocking_delete_a_dynamic_amqp091_shovel() {
183200 let endpoint = endpoint ( ) ;
184201 let rc = Client :: new ( & endpoint, USERNAME , PASSWORD ) ;
185202
203+ if testing_against_3_13_x ( ) {
204+ return ;
205+ }
206+
186207 let vh = "rust.http.api.blocking.test_delete_a_dynamic_amqp091_shovel" ;
187208 let sh = "test_delete_a_dynamic_amqp091_shovel" ;
188209
0 commit comments