mod common;
use mempill_core::testing::conformance::{
run_disposition_scope_conformance, run_granularity_conformance, run_history_conformance,
run_persistence_conformance, run_valid_at_conformance,
};
#[test]
fn postgres_conformance_pg16() {
common::with_pg("16", |store| {
run_persistence_conformance(&*store);
});
}
#[test]
fn postgres_conformance_pg18() {
common::with_pg("18", |store| {
run_persistence_conformance(&*store);
});
}
#[test]
fn postgres_history_conformance_pg16() {
common::with_pg("16", |store| {
run_history_conformance(&*store);
});
}
#[test]
fn postgres_history_conformance_pg18() {
common::with_pg("18", |store| {
run_history_conformance(&*store);
});
}
#[test]
fn postgres_disposition_scope_conformance_pg16() {
common::with_pg("16", |store| {
run_disposition_scope_conformance(&*store);
});
}
#[test]
fn postgres_disposition_scope_conformance_pg18() {
common::with_pg("18", |store| {
run_disposition_scope_conformance(&*store);
});
}
#[test]
fn postgres_valid_at_conformance_pg16() {
common::with_pg("16", |store| {
run_valid_at_conformance(&*store);
});
}
#[test]
fn postgres_valid_at_conformance_pg18() {
common::with_pg("18", |store| {
run_valid_at_conformance(&*store);
});
}
#[test]
fn postgres_granularity_conformance_pg16() {
common::with_pg("16", |store| {
run_granularity_conformance(&*store);
});
}
#[test]
fn postgres_granularity_conformance_pg18() {
common::with_pg("18", |store| {
run_granularity_conformance(&*store);
});
}