覆盖文章 CRUD、状态流(draft→pending_review→published→draft)、 拒绝与重提交、列表过滤、软删除、租户隔离、分类 CRUD+隔离、 标签 CRUD+文章关联、乐观锁冲突。
33 lines
1.1 KiB
Rust
33 lines
1.1 KiB
Rust
#[path = "integration/test_db.rs"]
|
|
mod test_db;
|
|
#[path = "integration/test_fixture.rs"]
|
|
mod test_fixture;
|
|
#[path = "integration/auth_tests.rs"]
|
|
mod auth_tests;
|
|
#[path = "integration/plugin_tests.rs"]
|
|
mod plugin_tests;
|
|
#[path = "integration/workflow_tests.rs"]
|
|
mod workflow_tests;
|
|
#[path = "integration/health_patient_tests.rs"]
|
|
mod health_patient_tests;
|
|
#[path = "integration/health_appointment_tests.rs"]
|
|
mod health_appointment_tests;
|
|
#[path = "integration/health_pii_encryption_tests.rs"]
|
|
mod health_pii_encryption_tests;
|
|
#[path = "integration/health_points_tests.rs"]
|
|
mod health_points_tests;
|
|
#[path = "integration/health_dialysis_tests.rs"]
|
|
mod health_dialysis_tests;
|
|
#[path = "integration/health_alert_tests.rs"]
|
|
mod health_alert_tests;
|
|
#[path = "integration/health_device_reading_tests.rs"]
|
|
mod health_device_reading_tests;
|
|
#[path = "integration/health_follow_up_tests.rs"]
|
|
mod health_follow_up_tests;
|
|
#[path = "integration/health_consultation_tests.rs"]
|
|
mod health_consultation_tests;
|
|
#[path = "integration/health_data_tests.rs"]
|
|
mod health_data_tests;
|
|
#[path = "integration/health_article_tests.rs"]
|
|
mod health_article_tests;
|