const SOURCES: &[(&str, &str)] = &[
(
"records/throttle.rs",
include_str!("../src/records/throttle.rs"),
),
("records/epid.rs", include_str!("../src/records/epid.rs")),
(
"records/timestamp.rs",
include_str!("../src/records/timestamp.rs"),
),
(
"device_support/epid_soft.rs",
include_str!("../src/device_support/epid_soft.rs"),
),
(
"device_support/epid_soft_callback.rs",
include_str!("../src/device_support/epid_soft_callback.rs"),
),
(
"device_support/time_of_day.rs",
include_str!("../src/device_support/time_of_day.rs"),
),
];
#[test]
fn a_record_support_tail_never_uses_the_ambient_seam() {
record_seam_gate::assert_no_ambient_seam(SOURCES);
}