()
| 471 | |
| 472 | #[tokio::test] |
| 473 | async fn versioned_cdc_routes_exist() { |
| 474 | let r = stub_router(); |
| 475 | assert_eq!( |
| 476 | status_for(&r, Method::GET, "/v1/cdc/mycoll").await, |
| 477 | StatusCode::OK, |
| 478 | ); |
| 479 | assert_eq!( |
| 480 | status_for(&r, Method::GET, "/v1/cdc/mycoll/poll").await, |
| 481 | StatusCode::OK, |
| 482 | ); |
| 483 | } |
| 484 | } |
nothing calls this directly
no test coverage detected