dag-executor 0.1.0

A production-ready DAG executor with state management and advanced patterns
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Entry point for the unit-test suite.
//!
//! Cargo only auto-discovers `.rs` files directly under `tests/`, so this file
//! pulls in the per-component modules that live under `tests/unit/`.

#[path = "common/fixtures.rs"]
mod fixtures;

#[path = "unit/graph_tests.rs"]
mod graph_tests;
#[path = "unit/scheduler_tests.rs"]
mod scheduler_tests;
#[path = "unit/state_tests.rs"]
mod state_tests;
#[path = "unit/storage_tests.rs"]
mod storage_tests;
#[path = "unit/worker_pool_tests.rs"]
mod worker_pool_tests;