mod common;
use mempill_core::testing::conformance::{
run_disposition_scope_conformance, run_history_conformance, run_persistence_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);
});
}