rust-ef 1.7.0

Rust Entity Framework - An EFCore-inspired ORM for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Shared CRUD test entity and helpers for multi-provider integration tests.

#![allow(dead_code, unused_imports)]

mod cascade_fixtures;
mod mock_generators;
mod setup;
mod test_item;

pub use cascade_fixtures::*;
pub use mock_generators::*;
pub use setup::{
    db_context_with_provider, reset_schema, run_aggregation_queries, run_count_and_any,
    run_crud_lifecycle, run_empty_result_handling, run_ensure_created_and_deleted,
    run_filter_with_in_operator, run_has_data_seed, run_limit_and_offset,
};
pub use test_item::TestItem;