#[cfg(any(test, feature = "test-support"))]
use crate::mock_client::{ExpectationBuilder, MockClient};
#[cfg(any(test, feature = "test-support"))]
pub trait ResourceGraphMockHelpers {
fn expect_query_resources(&mut self) -> ExpectationBuilder<'_>;
}
#[cfg(any(test, feature = "test-support"))]
impl ResourceGraphMockHelpers for MockClient {
fn expect_query_resources(&mut self) -> crate::mock_client::ExpectationBuilder<'_> {
let path = "/providers/Microsoft.ResourceGraph/resources".to_string();
self.expect_post(&path)
}
}