13 lines
289 B
Rust
13 lines
289 B
Rust
mod append_graph_entity_map_tests {
|
|
use grapherity::models::AppendGraph;
|
|
|
|
grapherity::entity_map_tests!(AppendGraph);
|
|
}
|
|
|
|
mod graph_entity_map_tests {
|
|
use grapherity::models::Graph;
|
|
|
|
grapherity::entity_map_tests!(Graph);
|
|
grapherity::entity_map_deletion_tests!(Graph);
|
|
}
|