#![allow(unexpected_cfgs)]
#[allow(unexpected_cfgs)]
#[cfg(all(
test,
feature = "integration-tests",
feature = "__has_scirs_backend_disabled"
))]
mod tests {
}
#[cfg(all(test, feature = "integration-tests"))]
mod property_tests_placeholder {
#[test]
fn property_tests_require_scirs_backend() {
eprintln!("Warning: Property tests require tensorlogic-scirs-backend");
eprintln!("These tests are currently disabled due to circular dev-dependencies");
eprintln!(
"To enable: uncomment tensorlogic-scirs-backend in Cargo.toml [dev-dependencies]"
);
}
}